Skip to content

Commit df79250

Browse files
authored
Merge pull request #25 from cgundogan/pr/doc_https
tasks: use https for RIOT doc
2 parents 5d701cb + 9f7ee1d commit df79250

7 files changed

Lines changed: 15 additions & 15 deletions

File tree

task-02/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ static const shell_command_t shell_commands[] = {
3030
Please note, that the list of shell commands must be terminated with an empty entry.
3131

3232
## Task 2.2: Control the hardware
33-
1. Include the [`led.h`](http://doc.riot-os.org/led_8h.html) file to get access
33+
1. Include the [`led.h`](https://doc.riot-os.org/led_8h.html) file to get access
3434
to the `LED0_TOGGLE` macro.
3535
2. Write a command handler `toggle` in [`main.c`](main.c) that toggles the
3636
primary LED on the board using the `LED0_TOGGLE` macro.
3737

38-
[Read the Doc](http://doc.riot-os.org/group__sys__shell.html)
38+
[Read the Doc](https://doc.riot-os.org/group__sys__shell.html)
3939

4040
[next task](../task-03)

task-03/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Threads in RIOT are functions with signature
55
```C
66
void *thread_handler(void *arg);
77
```
8-
Use [`thread_create()`](http://doc.riot-os.org/thread_8h.html#a87c94d383e64a09974fc8665f82a99b3) from
9-
[`thread.h`](http://doc.riot-os.org/thread_8h.html) to start it
8+
Use [`thread_create()`](https://doc.riot-os.org/thread_8h.html#a87c94d383e64a09974fc8665f82a99b3) from
9+
[`thread.h`](https://doc.riot-os.org/thread_8h.html) to start it
1010
```C
1111
pid = thread_create(stack, sizeof(stack),
1212
THREAD_PRIORITY_MAIN - 1,
@@ -20,6 +20,6 @@ pid = thread_create(stack, sizeof(stack),
2020
* Run the application on `native`: `make all term`
2121
* Check your output, it should read: `I'm in "thread" now`
2222

23-
[Read the doc](http://doc.riot-os.org/group__core__thread.html)
23+
[Read the doc](https://doc.riot-os.org/group__core__thread.html)
2424

2525
[next task](../task-04)

task-04/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[previous task](../task-03)
22

33
# Task 4: Timers
4-
[`xtimer`](http://doc.riot-os.org/group__sys__xtimer.html) is the high level API of RIOT to multiplex hardware timers.
4+
[`xtimer`](https://doc.riot-os.org/group__sys__xtimer.html) is the high level API of RIOT to multiplex hardware timers.
55
For this task we need only the following functions
66

77
- `xtimer_now()` to get current system time in microseconds
@@ -16,6 +16,6 @@ USEMODULE += xtimer
1616
* Create a thread in [`main.c`](main.c#L12) that prints the current system time every 2 seconds
1717
* Check the existence of the thread with `ps` shell command
1818

19-
[Read the doc](http://doc.riot-os.org/group__sys__xtimer.html)
19+
[Read the doc](https://doc.riot-os.org/group__sys__xtimer.html)
2020

2121
[next task](../task-05)

task-05/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Task 5: Using network devices
44

55
## RIOT's Networking architecture
6-
Network devices are accessed through [`netdev`](http://doc.riot-os.org/group__drivers__netdev__api.html) driver API
6+
Network devices are accessed through [`netdev`](https://doc.riot-os.org/group__drivers__netdev__api.html) driver API
77

88
![Networking overview](../overview-net.png)
99

@@ -41,6 +41,6 @@ USEMODULE += auto_init_gnrc_netif
4141
* Type `ifconfig` to get your hardware addresses
4242
* Use `txtsnd` to send one of your neighbors a friendly message
4343

44-
[Read the Doc](http://doc.riot-os.org/group__drivers__netdev__api.html)
44+
[Read the Doc](https://doc.riot-os.org/group__drivers__netdev__api.html)
4545

4646
[next task](../task-06)

task-06/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# 6. UDP Client / Server
44

5-
The transport layer (UDP, TCP, etc) is accessed through [`conn`](http://doc.riot-os.org/group__net__conn.html) driver API
5+
The transport layer (UDP, TCP, etc) is accessed through [`conn`](https://doc.riot-os.org/group__net__conn.html) driver API
66

77
![Networking overview](../overview-net.png)
88

@@ -90,7 +90,7 @@ USEMODULE += gnrc_conn_udp
9090
```
9191
udp <tap0-IPv6-addr> 8888 hello
9292
```
93-
[Read the Doc](http://doc.riot-os.org/group__net__conn.html)
93+
[Read the Doc](https://doc.riot-os.org/group__net__conn.html)
9494
9595
## Task 6.3 -- Exchange UDP packets with your neighbors
9696
* Compile, flash and run on the board `BOARD=samr21-xpro make all flash term`

task-07/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Note: on MAC use `bridge0` instead of `tapbr0`.
2222
## Task 7.2: Extend `gnrc_minimal` application
2323
* Add the `gnrc_udp` module to the application's [Makefile](Makefile)
2424
* You can register for packets of a certain type and context (port 8888 in our
25-
case) using `gnrc_netreg_register()` from [`net/gnrc/netreg.h`](http://doc.riot-os.org/group__net__gnrc__netreg.html):
25+
case) using `gnrc_netreg_register()` from [`net/gnrc/netreg.h`](https://doc.riot-os.org/group__net__gnrc__netreg.html):
2626
* The current thread can be obtained with the `sched_active_pid` variable from
2727
`sched.h`
2828

@@ -31,7 +31,7 @@ gnrc_netreg_entry_t server = {NULL, 8888, sched_active_pid};
3131
gnrc_netreg_register(GNRC_NETTYPE_UDP, &server);
3232
```
3333
34-
* Packets can be received using the IPC receive function [msg_receive()](http://doc.riot-os.org/group__core__msg.html#gae3e05f08bd71d6f65dc727624c4d5f7a):
34+
* Packets can be received using the IPC receive function [msg_receive()](https://doc.riot-os.org/group__core__msg.html#gae3e05f08bd71d6f65dc727624c4d5f7a):
3535
3636
```C
3737
msg_t msg;
@@ -63,6 +63,6 @@ gnrc_pktbuf_release(pkt);
6363
* Get your IPv6 address using `ifconfig`
6464
* Send your neighbor some messages using `udp send`
6565
66-
[Read the Doc](http://doc.riot-os.org/group__net__gnrc.html)
66+
[Read the Doc](https://doc.riot-os.org/group__net__gnrc.html)
6767
6868
[next task](../task-08)

task-08/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ RIOT provides three shell to interact with the CCN-Lite stack:
4848

4949
* Take a look at the default shell commands in `sys/shell/commands/sc_ccnl.c`
5050
* Create a new command to send an interest with a shorter timeout
51-
(see [http://doc.riot-os.org/group__pkg__ccnlite.html](http://doc.riot-os.org/group__pkg__ccnlite.html)
51+
(see [https://doc.riot-os.org/group__pkg__ccnlite.html](https://doc.riot-os.org/group__pkg__ccnlite.html)
5252
* Use `ccnl_set_local_producer()` to create content on the fly
5353

5454
[next task](../task-09)

0 commit comments

Comments
 (0)