Difference between revisions of "Protocols stack"
Line 12: | Line 12: | ||
− | == | + | == The Contiki netstack == |
[[File:Contikinetstack.png|frame|Contiki Network Stack]]<br><br> | [[File:Contikinetstack.png|frame|Contiki Network Stack]]<br><br> | ||
− | Four Layers<br> | + | '''Four Layers'''<br> |
− | 1. Network layer<br> | + | 1. Network layer - NETSTACK_RADIO<br> |
− | 2. MAC (Medium Access Control) layer<br> | + | 2. MAC (Medium Access Control) layer - NETSTACK_MAC<br> |
− | 3. RDC (Radio Duty Cycling) layer<br> | + | 3. RDC (Radio Duty Cycling) layer - NETSTACK_RDC<br> |
− | 4. Radio layer<br><br> | + | 4. Radio layer - NETSTACK_RADIO<br><br> |
+ | |||
+ | '''The packet buffer - packetbuf'''<br> | ||
+ | * One buffer, holds a single packet.<br> | ||
+ | * All layers of the netstack operate on the packetbuf.<br> | ||
+ | * Large enough to hold a single radio packet - PACKETBUF_CONF_LEN<br><br> | ||
+ | |||
+ | '''Queue buffers - queuebuf'''<br> | ||
+ | * The packetbuf only holds the current packet.<br> | ||
+ | * To store packets on queues, use a queuebuf.<br> | ||
+ | * Use a list to keep track of them.<br><br> | ||
+ | |||
+ | '''uIP packet buffer - uip_buf'''<br><br> | ||
+ | |||
+ | '''Framers - NETSTACK_FRAMER'''<br> | ||
+ | * The framer module converts link-layer headers to packet attributes - '''parse()'''<br> | ||
+ | * And packet attributes to link-layer headers - '''create()'''<br> | ||
+ | |||
<br><br><br> | <br><br><br> |
Latest revision as of 01:34, 27 October 2014
The Contiki netstacks
Three network stacks
1. IPv6
2. IPv4
3. Rime
The Contiki netstack
Four Layers
1. Network layer - NETSTACK_RADIO
2. MAC (Medium Access Control) layer - NETSTACK_MAC
3. RDC (Radio Duty Cycling) layer - NETSTACK_RDC
4. Radio layer - NETSTACK_RADIO
The packet buffer - packetbuf
- One buffer, holds a single packet.
- All layers of the netstack operate on the packetbuf.
- Large enough to hold a single radio packet - PACKETBUF_CONF_LEN
Queue buffers - queuebuf
- The packetbuf only holds the current packet.
- To store packets on queues, use a queuebuf.
- Use a list to keep track of them.
uIP packet buffer - uip_buf
Framers - NETSTACK_FRAMER
- The framer module converts link-layer headers to packet attributes - parse()
- And packet attributes to link-layer headers - create()
Network & Routing Layer
- Contiki automatically forms a wireless IPv6 network with the help of routing protocol called RPL (Routing Protocol for Low-power and Lossy Networks (LLNs)).
- RPL forms routing graph from root node or AP (Access Point). It builds acyclic graph from root node called DODAG (Destination Oriented Directed Acyclic Graph).
- DIO (DODAG Information Object) messages are broadcast by all nodes starting from the root node. It includes the node's rank, ETX, DAG version number etc.
- The node selects a parent based on the received DIO messages and calculates its rank.
References
http://www.slideshare.net/ADunkels/building-day-2-upload-building-the-internet-of-things-with-thingsquare-and-contiki-day-2-part-3
http://www.slideshare.net/ADunkels/building-the-internet-of-things-with-thingsquare-and-contiki-day-1-part-2?related=1
https://tools.ietf.org/html/rfc6550
http://www.slideshare.net/ADunkels/building-day-2-upload-1?next_slideshow=1
http://www.slideshare.net/ADunkels/advanced-internet-of-things-firmware-engineering-with-thingsquare-and-contiki-day-1-part-2