2025-05-24 3:25 AM - last edited on 2025-05-27 1:14 AM by Andrew Neil
Split from What RTOS is used on STM32F429i eval board GUI Demo?
Thank you !
I have saved the github page. Will try the examples there.
Does the STM32429I eval board come with FreeRTOS installed ?
Solved! Go to Solution.
2025-05-27 1:10 AM
@Embedded_Andy wrote:Does the STM32429I eval board come with FreeRTOS installed ?
No - it doesn't work that way.
You build FreeRTOS (or any other RTOS of your choice; or no RTOS at all) into your project.
2025-05-27 1:10 AM
@Embedded_Andy wrote:Does the STM32429I eval board come with FreeRTOS installed ?
No - it doesn't work that way.
You build FreeRTOS (or any other RTOS of your choice; or no RTOS at all) into your project.
2025-05-27 6:49 AM
Thank you!
I guess the GUI is not the RTOS then.
2025-05-30 1:52 AM
@Embedded_Andy wrote:I guess the GUI is not the RTOS then.
Indeed not - it's just the graphics framework.
It can be used with no OS, or with an OS of your choice:
2025-05-30 6:22 AM
Thank you.