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: README.md
+37-4
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,13 @@ This is a port of FreeRTOS for STM32 as Arduino libraries.
5
5
For more information about FreeRTOS, visit the [FreeRTOS Web Site](http://www.freertos.org/"FreeRTOS").
6
6
Also, See the very useful [Getting Started](http://www.freertos.org/FreeRTOS-quick-start-guide.html"Quick Start Guide") page.
7
7
8
-
Current FreeRTOS version used for this library is [9.0.0](http://www.freertos.org/FreeRTOS-V9.html) and has been modified by ST (See st_readme.txt in FreeRTOS Source).
This is the current one provided with the [STM32Cube MCU Packages](http://www.st.com/en/embedded-software/stm32cube-mcu-packages.html)
12
+
Both have been modified by ST (See st_readme.txt in FreeRTOS Source).
13
+
14
+
These are the same provided with the [STM32Cube MCU Packages](http://www.st.com/en/embedded-software/stm32cube-mcu-packages.html)
11
15
12
16
## Configuration
13
17
@@ -17,11 +21,13 @@ This library provides a default FreeRTOS configuration file named `FreeRTOSConfi
17
21
18
22
User can provide his own FreeRTOS configuration file at sketch level by adding his configuration in a file named `STM32FreeRTOSConfig.h`.
19
23
24
+
Or add extra FreeRTOS configuration to the default at sketch level by adding an extra configuration in a file named `STM32FreeRTOSConfig_extra.h`.
25
+
20
26
Heap allocation schemes are provided by FreeRTOS, see [Memory allocation implementations included in the RTOS source](https://www.freertos.org/a00111.html).
21
27
To extend those schemes a thread-safe heap allocation using C runtime (Newlib) has been added based on Dave Nadler work:
0 commit comments