You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/code/Intro.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ This page is meant to guide you through the source code, so you can find the rel
7
7
Infinitime is based on FreeRTOS, a real-time operating system.
8
8
FreeRTOS provides several quality of life abstractions (for example easy software timers)
9
9
and most importantly supports multiple tasks.
10
-
If you want to read up on real-time operating systems, you can look [here](https://www.freertos.org/implementation/a00002.html) and [here](https://www.freertos.org/features.html).
10
+
If you want to read up on real-time operating systems, you can look [here](https://www.freertos.org/Documentation/01-FreeRTOS-quick-start/01-Beginners-guide/01-RTOS-fundamentals) and [here](https://www.freertos.org/features.html).
11
11
The main "process" creates at least one task and then starts the FreeRTOS task scheduler.
12
12
This main "process" is the standard main() function inside [main.cpp](/src/main.cpp).
13
13
The task scheduler is responsible for giving every task enough cpu time.
0 commit comments