1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sixlowapp
2015-03-21 14:01:49 +01:00
..
helper.c sixlowapp: initial import of a 6LoWPAN example app 2014-11-06 22:30:36 +01:00
main.c sixlowapp: initial import of a 6LoWPAN example app 2014-11-06 22:30:36 +01:00
Makefile sixlowapp: initial import of a 6LoWPAN example app 2014-11-06 22:30:36 +01:00
monitor.c sixlowapp: initial import of a 6LoWPAN example app 2014-11-06 22:30:36 +01:00
README.md sixlowapp: fix small typo 2015-03-21 14:01:49 +01:00
sixlowapp.h sixlowapp: initial import of a 6LoWPAN example app 2014-11-06 22:30:36 +01:00
sixlowshell.c sixlowapp: fixed typo and complemented usage text 2014-11-07 00:10:06 +01:00
udp.c sixlowapp: initial import of a 6LoWPAN example app 2014-11-06 22:30:36 +01:00

Usage of sixlowapp - 6LoWPAN example

  • set up two nodes
    • for nativenet:
      • run ${RIOTBASE}/cpu/native/tapsetup.sh create
      • run PORT=tap0 make term
      • run PORT=tap1 make term (from another terminal)
  • type ifconfig on both nodes
  • type ping <IPv6 address> on node 1, using one of node 2's IPv6 addresses
  • type nc -l <PORT> to start a UDP server listening on <PORT> on of the nodes
  • type nc <IPv6 address> <PORT> <TEXT> on the other node to send <TEXT> to the first node