Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed readme as old hyperlinks didnt point to correct urls #86

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions task-07/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ you should be able to handle it.
It uses the [example applications in the RIOT repository](https://github.com/RIOT-OS/RIOT/tree/master/examples).

## Task 7.1: Compile the `gnrc_minimal` application
* Go to the [`gnrc_minimal` application](https://github.com/RIOT-OS/RIOT/tree/master/examples/gnrc_minimal)
* Go to the [`gnrc_minimal` application](https://github.com/RIOT-OS/RIOT/tree/master/examples/networking/gnrc/gnrc_minimal)
* Compile and run on `native`
* Should print something like `My address is fe80::d403:24ff:fe89:2460`
* Ping RIOT instance from Linux:
Expand All @@ -21,7 +21,7 @@ Note: on MAC use `bridge0` instead of `tapbr0`.

## Task 7.2: Extend `gnrc_minimal` application
* Add the `gnrc_udp` module to the application's
[Makefile](https://github.com/RIOT-OS/RIOT/blob/master/examples/gnrc_minimal/Makefile)
[Makefile](https://github.com/RIOT-OS/RIOT/blob/master/examples/networking/gnrc/gnrc_minimal/Makefile)
* To be able to receive packets, a [message queue](http://doc.riot-os.org/group__net__gnrc.html) must be
created using [msg_init_queue](https://doc.riot-os.org/group__core__msg.html#ga480e6f32c8ab18579b62a890f3fda2cd):

Expand Down Expand Up @@ -66,11 +66,11 @@ gnrc_pktbuf_release(pkt);
2. Use `netcat` on your host to test your application on native node.

## Task 7.3: Send your neighbor some messages again
* Go to the [`gnrc_networking` application](https://github.com/RIOT-OS/RIOT/tree/master/examples/gnrc_networking)
* Go to the [`gnrc_networking` application](https://github.com/RIOT-OS/RIOT/tree/master/examples/networking/gnrc/gnrc_networking)
* Have a look in `udp.c` how packets are constructed and send
* Compile, flash, and run on the board `BOARD=samr21-xpro make all flash term`
* Type `help`
* Start UDP server on port 8888 using `udp server 8888`
* Start UDP server on port 8888 using `udp server start 8888`
* Get your IPv6 address using `ifconfig`
* Send your neighbor some messages using `udp send`

Expand Down