56ccfb3785
Enable 802.15.4 driver that receives the IPv6 packet, does header compression on it and writes it to the 15.4 stack Tx FIFO. The 15.4 Tx fiber will pick up the header compressed IPv6 6LoWPAN packet and fragment it into suitable chunks ready to be sent to the 15.4 hw driver. The 15.4 stack Rx fiber picks 15.4 frames from 15.4 Rx FIFO (which are fed by 15.4 driver) and reassembles the all fragmented packets and uncompress the header and writes to the IP Rx FIFO. The 15.4 loopback radio driver receives the 15.4 frames and put it back to 15.4 Rx Fifo. Change-Id: I68d1c7ff6de0e8770616e574206c2091c69a28e6 Signed-off-by: Ravi kumar Veeramally <ravikumar.veeramally@linux.intel.com> Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
9 lines
155 B
C
9 lines
155 B
C
#ifndef DUMMY154RADIO_H
|
|
#define DUMMY154RADIO_H
|
|
|
|
#include "dev/radio.h"
|
|
|
|
extern const struct radio_driver dummy_15_4_driver;
|
|
|
|
#endif /* DUMMY154RADIO_H */
|