osd-contiki/core/net/rime
adamdunkels e34eb54960 A work-in-progress rework of the Contiki MAC and radio layers. The
main ideas are:

* Separates the Contiki low-layer network stack into four layers:
  network (e.g. sicslowpan / rime), Medium Access Control MAC
  (e.g. CSMA), Radio Duty Cycling RDC (e.g. ContikiMAC, X-MAC), and
  radio (e.g. cc2420).
* Introduces a new way to configure the network stack. Four #defines
  that specify what mechanism/protocol/driver to use at the four
  layers: NETSTACK_CONF_NETWORK, NETSTACK_CONF_MAC, NETSTACK_CONF_RDC,
  NETSTACK_CONF_RADIO.
* Adds a callback mechanism to inform the MAC and network layers about
  the fate of a transmitted packet: if the packet was not possible to
  transmit, the cause of the failure is reported, and if the packets
  was successfully transmitted, the number of tries before it was
  finally transmitted is reported.
* NULL-protocols at both the MAC and RDC layers: nullmac and nullrdc,
  which can be used when MAC and RDC functionality is not needed.
* Extends the radio API with three new functions that enable more
  efficient radio duty cycling protocols: channel check, pending
  packet, and receiving packet.
* New initialization mechanism, which takes advantage of the NETSTACK
  #defines.
2010-02-18 21:48:39 +00:00
..
abc.c Renamed the rimebuf module to packetbuf to signal that the module is used outside of a pure Rime context (e.g., the sicslowpan code uses it). 2009-03-12 21:58:20 +00:00
abc.h Renamed the rimebuf module to packetbuf to signal that the module is used outside of a pure Rime context (e.g., the sicslowpan code uses it). 2009-03-12 21:58:20 +00:00
announcement.c Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
announcement.h Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
broadcast.c Renamed the rimebuf module to packetbuf to signal that the module is used outside of a pure Rime context (e.g., the sicslowpan code uses it). 2009-03-12 21:58:20 +00:00
broadcast.h Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
chameleon-bitopt.c Fixed sdcc compiler problem: function pointers cannot be NULL, so added a dummy function instead 2009-09-09 21:09:42 +00:00
chameleon-bitopt.h Added CC_CONST_FUNCTION as a work-around to the sdcc const function pointer bug 2008-07-03 07:38:52 +00:00
chameleon-raw.c Fixed sdcc compiler problem: function pointers cannot be NULL, so added a dummy function instead 2009-09-09 21:09:42 +00:00
chameleon-raw.h Added missing #include sys/cc.h to make system compile 2008-07-03 07:37:51 +00:00
chameleon.c A work-in-progress rework of the Contiki MAC and radio layers. The 2010-02-18 21:48:39 +00:00
chameleon.h Renamed the rimebuf module to packetbuf to signal that the module is used outside of a pure Rime context (e.g., the sicslowpan code uses it). 2009-03-12 21:58:20 +00:00
channel.c Renamed the rimebuf module to packetbuf to signal that the module is used outside of a pure Rime context (e.g., the sicslowpan code uses it). 2009-03-12 21:58:20 +00:00
channel.h Renamed the rimebuf module to packetbuf to signal that the module is used outside of a pure Rime context (e.g., the sicslowpan code uses it). 2009-03-12 21:58:20 +00:00
collect.c Added debugging statements for packet drops 2010-02-08 21:59:49 +00:00
collect.h Rewrite of the collect module. The new version uses a packet queue for outgoing and forwarded packets so that more than one packet can be forwarded at the same time. The new version uses the packetqueue module to maintain the packet queue. 2009-04-29 20:48:57 +00:00
ctimer.c Adjusted process name to title case. 2010-02-05 19:13:05 +00:00
ctimer.h * Added ctimer_restart(). Patch by Moritz Struebe. 2009-11-19 18:32:05 +00:00
ipolite.c Added parameter to ipolite that specifies how many dups that are acceptable, before suppressing one's own packet 2010-01-25 13:54:06 +00:00
ipolite.h Added parameter to ipolite that specifies how many dups that are acceptable, before suppressing one's own packet 2010-01-25 13:54:06 +00:00
Makefile.rime New module: packetqueue. The packetqueue module maintains packet queues for other modules. 2009-04-29 20:47:30 +00:00
mesh.c Signal the result of transmissions attempts made in the mesh module. Patch from Moritz Struebe 2009-12-18 14:57:15 +00:00
mesh.h Added const to constant parameters (rime addresses) 2009-03-24 07:15:04 +00:00
multihop.c Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
multihop.h Added const to constant parameters (rime addresses) 2009-03-24 07:15:04 +00:00
neighbor-discovery.c Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
neighbor-discovery.h Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
neighbor.c Moved the neigbor_init() call to the collect module, since it is the only one that currently uses it 2010-02-03 20:38:33 +00:00
neighbor.h Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
netflood.c Added parameter to ipolite that specifies how many dups that are acceptable, before suppressing one's own packet 2010-01-25 13:54:06 +00:00
netflood.h Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
packetbuf.c Added a function to clear only the header part of the packetbuf 2010-02-06 07:48:52 +00:00
packetbuf.h Added a function to clear only the header part of the packetbuf 2010-02-06 07:48:52 +00:00
packetqueue.c New module: packetqueue. The packetqueue module maintains packet queues for other modules. 2009-04-29 20:47:30 +00:00
packetqueue.h fixed some documentation typos. 2009-05-26 13:58:53 +00:00
polite-announcement.c Made number of duplicate announcements configurable 2010-01-26 10:18:55 +00:00
polite-announcement.h A new experimental network primitive called an 'announcement'. An 2009-02-05 19:32:01 +00:00
polite.c Renamed the rimebuf module to packetbuf to signal that the module is used outside of a pure Rime context (e.g., the sicslowpan code uses it). 2009-03-12 21:58:20 +00:00
polite.h Renamed the rimebuf module to packetbuf to signal that the module is used outside of a pure Rime context (e.g., the sicslowpan code uses it). 2009-03-12 21:58:20 +00:00
queuebuf.c Made queuebuf statistics configurable, and off by default 2010-02-08 21:10:32 +00:00
queuebuf.h Renamed the rimebuf module to packetbuf to signal that the module is used outside of a pure Rime context (e.g., the sicslowpan code uses it). 2009-03-12 21:58:20 +00:00
rime-udp.c A work-in-progress rework of the Contiki MAC and radio layers. The 2010-02-18 21:48:39 +00:00
rime-udp.h A work-in-progress rework of the Contiki MAC and radio layers. The 2010-02-18 21:48:39 +00:00
rime.c A work-in-progress rework of the Contiki MAC and radio layers. The 2010-02-18 21:48:39 +00:00
rimeaddr.c Rewrote the rimeaddr_copy() loop to use the ->u8 field instead of the ->u16 field (which now finally is removed) 2008-11-30 18:26:57 +00:00
rimeaddr.h fixed some documentation typos. 2009-05-26 13:58:53 +00:00
rimestats.c Rime statistics gathering 2007-05-22 20:48:41 +00:00
rimestats.h Rime statistics gathering 2007-05-22 20:48:41 +00:00
rmh.c Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
rmh.h Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
route-discovery.c Bugfix: copy the originator address from the packetbuf into a local variable to avoid it being overwritten 2010-01-27 08:12:56 +00:00
route-discovery.h Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
route.c Added debug printout 2010-02-03 01:18:24 +00:00
route.h Added prototype missing for quite some time now - do we need -Werror ? 2009-08-20 20:27:17 +00:00
rucb.c Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
rucb.h Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
rudolph0.c Renamed the rimebuf module to packetbuf to signal that the module is used outside of a pure Rime context (e.g., the sicslowpan code uses it). 2009-03-12 21:58:20 +00:00
rudolph0.h Changed name of the sabc module to stbroadcast 2008-06-30 08:28:53 +00:00
rudolph1.c Added parameter to ipolite that specifies how many dups that are acceptable, before suppressing one's own packet 2010-01-25 13:54:06 +00:00
rudolph1.h Changed all occurences of u8_t and u16_t to uint8_t and uint16_t 2008-02-24 22:05:27 +00:00
rudolph2.c Renamed the rimebuf module to packetbuf to signal that the module is used outside of a pure Rime context (e.g., the sicslowpan code uses it). 2009-03-12 21:58:20 +00:00
rudolph2.h Changed all occurences of u8_t and u16_t to uint8_t and uint16_t 2008-02-24 22:05:27 +00:00
runicast.c Made retransmission timeout configurable 2010-01-26 10:19:26 +00:00
runicast.h Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
stbroadcast.c Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
stbroadcast.h fixed some documentation typos. 2009-05-26 13:58:53 +00:00
stunicast.c Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
stunicast.h Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
timesynch.c Use RTIMER_NOW() instead of rtimer_arch_now() 2009-12-09 18:08:26 +00:00
timesynch.h Changed filename of the CC2420 driver from simple-cc2420 to cc2420. 2008-07-01 21:02:51 +00:00
trickle.c Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
trickle.h Added a timer that randomizes the retransmission of an incoming new trickle version to avoid broadcast collisions 2009-04-06 21:20:35 +00:00
unicast.c Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00
unicast.h Made rimeaddr_t pointers const where they should be. 2009-11-08 19:40:16 +00:00