@@ -9,7 +9,7 @@ you should be able to handle it.
9
9
It uses the [ example applications in the RIOT repository] ( https://github.com/RIOT-OS/RIOT/tree/master/examples ) .
10
10
11
11
## 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 )
13
13
* Compile and run on ` native `
14
14
* Should print something like ` My address is fe80::d403:24ff:fe89:2460 `
15
15
* Ping RIOT instance from Linux:
@@ -21,7 +21,7 @@ Note: on MAC use `bridge0` instead of `tapbr0`.
21
21
22
22
## Task 7.2: Extend ` gnrc_minimal ` application
23
23
* 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 )
25
25
* To be able to receive packets, a [ message queue] ( http://doc.riot-os.org/group__net__gnrc.html ) must be
26
26
created using [ msg_init_queue] ( https://doc.riot-os.org/group__core__msg.html#ga480e6f32c8ab18579b62a890f3fda2cd ) :
27
27
@@ -66,11 +66,11 @@ gnrc_pktbuf_release(pkt);
66
66
2 . Use ` netcat ` on your host to test your application on native node.
67
67
68
68
## 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 )
70
70
* Have a look in ` udp.c ` how packets are constructed and send
71
71
* Compile, flash, and run on the board ` BOARD=samr21-xpro make all flash term `
72
72
* 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 `
74
74
* Get your IPv6 address using ` ifconfig `
75
75
* Send your neighbor some messages using ` udp send `
76
76
0 commit comments