@@ -9,7 +9,7 @@ you should be able to handle it.
99It uses the [ example applications in the RIOT repository] ( https://github.com/RIOT-OS/RIOT/tree/master/examples ) .
1010
1111## Task 7.1: Compile the ` gnrc_minimal ` application
12- * Go to the [ ` gnrc_minimal ` application] ( https://github.com/RIOT-OS/RIOT/tree/master/examples/gnrc_minimal )
12+ * Go to the [ ` gnrc_minimal ` application] ( https://github.com/RIOT-OS/RIOT/tree/master/examples/networking/gnrc/ gnrc_minimal )
1313* Compile and run on ` native `
1414* Should print something like ` My address is fe80::d403:24ff:fe89:2460 `
1515* Ping RIOT instance from Linux:
@@ -21,7 +21,7 @@ Note: on MAC use `bridge0` instead of `tapbr0`.
2121
2222## Task 7.2: Extend ` gnrc_minimal ` application
2323* Add the ` gnrc_udp ` module to the application's
24- [ Makefile] ( https://github.com/RIOT-OS/RIOT/blob/master/examples/gnrc_minimal/Makefile )
24+ [ Makefile] ( https://github.com/RIOT-OS/RIOT/blob/master/examples/networking/gnrc/ gnrc_minimal/Makefile )
2525* To be able to receive packets, a [ message queue] ( http://doc.riot-os.org/group__net__gnrc.html ) must be
2626 created using [ msg_init_queue] ( https://doc.riot-os.org/group__core__msg.html#ga480e6f32c8ab18579b62a890f3fda2cd ) :
2727
@@ -66,11 +66,11 @@ gnrc_pktbuf_release(pkt);
66662 . Use ` netcat ` on your host to test your application on native node.
6767
6868## Task 7.3: Send your neighbor some messages again
69- * Go to the [ ` gnrc_networking ` application] ( https://github.com/RIOT-OS/RIOT/tree/master/examples/gnrc_networking )
69+ * Go to the [ ` gnrc_networking ` application] ( https://github.com/RIOT-OS/RIOT/tree/master/examples/networking/gnrc/ gnrc_networking )
7070* Have a look in ` udp.c ` how packets are constructed and send
7171* Compile, flash, and run on the board ` BOARD=samr21-xpro make all flash term `
7272* Type ` help `
73- * Start UDP server on port 8888 using ` udp server 8888 `
73+ * Start UDP server on port 8888 using ` udp server start 8888 `
7474* Get your IPv6 address using ` ifconfig `
7575* Send your neighbor some messages using ` udp send `
7676
0 commit comments