Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

...

...

Motivation


IoT-LAB is a sensor network platform distributed in six sites of France. Its goal is to serve as a testbed for experiments and applications related to the future Internet of Things. There are three types of boards in IoT-LAB. One of them is the WSN430, with two versions: WSN430-v13b and WSN430-v14, differing the radio chip.

...

Info
  • In the following lines, a demo will be presented in order to test the WSN430-v14 UART and radio drivers, for the implementation of OpenWSN on IoT-LAB.

                             Testing UART interface

...

Code Block
user@rennes:~$ nc wsn430-<moteID> 20000
Hello, World!
openwsn
openwsn
Hello, World!
Hello, World!
c
c
Hello, World!
Hello, World!
Hello, World!
iotlab
iotlab


Testing the Radio 

In this application, we will use two motes. One of them will run the TX, and the other will run the RX. Each 500ms, the TX will send a packet in the air. The RX will listen to these packets and write in its serial interface the length, number, RSSI, LQI and CRC of each packet.

  • To test the radio, we will:
    1. Build two firmwares
    2. Login in IoT-LAB Web Interface
    3. Create a new experiment with two neighboring motes
         3.1 Load the firmwares
    4. Access the server-site
    5. Download openwsn-fw repository
    6. Compile and run a parser script created by Thomas Watteyne
      6.1 Receive transmission information from RX mote

...