Difference between revisions of "STM32 FreeRTOS"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
[[Category:STM32]][[Category:STM32 Development]][[Category:FreeRTOS]]{{metadesc|FreeRTOS on STM32}} | [[Category:STM32]][[Category:STM32 Development]][[Category:FreeRTOS]]{{metadesc|FreeRTOS on STM32}} | ||
+ | [[File:FreeRTOS Middleware.png|thumb]] | ||
[[STM32CubeMX]] includes an option to use [[FreeRTOS]]. In an earlier life, I did quite a lot of development on [[ESP32]], and that, due to it's dual-core design, is very much centred around [[FreeRTOS]]. Back the, I grew to hate [[FreeRTOS]]. | [[STM32CubeMX]] includes an option to use [[FreeRTOS]]. In an earlier life, I did quite a lot of development on [[ESP32]], and that, due to it's dual-core design, is very much centred around [[FreeRTOS]]. Back the, I grew to hate [[FreeRTOS]]. | ||
Line 17: | Line 18: | ||
To be added | To be added | ||
+ | |||
+ | == Example == | ||
+ | |||
+ | |||
== Miscellaneous Links == | == Miscellaneous Links == | ||
* [https://ipfs.io/ipfs/QmW2417fv31Boizs8yzxyLVVpteh1eNRp6SLWWWMS186pa/FreeRTOS_v1.7%20-%20CMSIS%20OS%20API.pdf FreeRTOS on STM32] | * [https://ipfs.io/ipfs/QmW2417fv31Boizs8yzxyLVVpteh1eNRp6SLWWWMS186pa/FreeRTOS_v1.7%20-%20CMSIS%20OS%20API.pdf FreeRTOS on STM32] |
Revision as of 04:14, 20 August 2021
STM32CubeMX includes an option to use FreeRTOS. In an earlier life, I did quite a lot of development on ESP32, and that, due to it's dual-core design, is very much centred around FreeRTOS. Back the, I grew to hate FreeRTOS.
The examples on this page is using a STM32F411 based Black Pill development board.
Concepts
Tasks
To be added
Queues
To be added
Semaphores and Mutexes
To be added