Module imix::lowpan_frag_dummy
[−]
[src]
lowpan_frag_dummy.rs
: 6LoWPAN Fragmentation Test Suite
This implements a simple testing framework for 6LoWPAN fragmentation and
compression. Two Imix boards run this code, one for receiving and one for
transmitting. The transmitting board must call the start
function in
the main.rs
file. The transmitting Imix then sends a variety of packets
to the receiving Imix, relying on the 6LoWPAN fragmentation and reassembly
layer. Note that this layer also performs 6LoWPAN compression (invisible
to the upper layers), so this test suite is also dependent on the
correctness of the compression/decompression implementation; for this
reason, tests solely for compression/decompression have been left in a
different file.
This test suite will print out whether a receive packet is different than the expected packet. For this test to work correctly, and for both sides to remain in sync, they must both be started at the same time. Any dropped frames will prevent the test from completing successfully.
To use this test suite, allocate space for a new LowpanTest structure, and
set it as the client for the Sixlowpan struct and for the respective TxState
struct. For the transmit side, call the LowpanTest::start method. The
initialize_all
function performs this initialization; simply call this
function in boards/imix/src/main.rs
as follows:
Alternatively, you can call the initialize_all
function, which performs
the initialization routines for the 6LoWPAN, TxState, RxState, and Sixlowpan
structs. Insert the code into boards/imix/src/main.rs
as follows:
... // Radio initialization code ... let lowpan_frag_test = lowpan_frag_dummy::initialize_all(radio_mac as &'static MacDevice, mux_alarm as &'static MuxAlarm<'static, sam4l::ast::Ast>); ... // Imix initialization ... lowpan_frag_test.start(); // If flashing the transmitting Imix
Reexports
extern crate sam4l; |
use capsules; |
use capsules::ieee802154::device::MacDevice; |
use capsules::net::ieee802154::MacAddress; |
use capsules::net::ip::IP6Header; |
use capsules::net::ip::IPAddr; |
use capsules::net::ip::ip6_nh; |
use capsules::net::sixlowpan::Sixlowpan; |
use capsules::net::sixlowpan::SixlowpanClient; |
use capsules::net::sixlowpan_compression; |
use capsules::net::sixlowpan_compression::Context; |
use capsules::virtual_alarm::MuxAlarm; |
use capsules::virtual_alarm::VirtualMuxAlarm; |
use core::cell::Cell; |
use core::mem; |
use kernel::ReturnCode; |
use kernel::hil::radio; |
use kernel::hil::time; |
use kernel::hil::time::Frequency; |
Structs
LowpanTest |
Enums
DAC | |
SAC | |
TF |
Constants
DEFAULT_CTX_PREFIX_LEN | |
DST_ADDR | |
DST_MAC_ADDR | |
IP6_HDR_SIZE | |
MLP | |
PAYLOAD_LEN | |
SRC_ADDR | |
SRC_MAC_ADDR | |
TEST_DELAY_MS | |
TEST_LOOP |
Statics
DEFAULT_CTX_PREFIX | |
IP6_DGRAM | |
RADIO_BUF_TMP | |
RF233_BUF | |
RX_STATE_BUF |
Functions
initialize_all⚠ | |
ipv6_check_receive_packet | |
ipv6_prepare_packet |