cancel
Showing results for 
Search instead for 
Did you mean: 

Does the STM32F429I eval board come with FreeRTOS installed ?

Embedded_Andy
Associate II

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 ?

1 ACCEPTED SOLUTION

Accepted Solutions
Andrew Neil
Super User

@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.

A complex system that works is invariably found to have evolved from a simple system that worked.
A complex system designed from scratch never works and cannot be patched up to make it work.

View solution in original post

4 REPLIES 4
Andrew Neil
Super User

@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.

A complex system that works is invariably found to have evolved from a simple system that worked.
A complex system designed from scratch never works and cannot be patched up to make it work.

Thank you! 

I guess the GUI is not the RTOS then.  


@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:

https://support.touchgfx.com/docs/development/touchgfx-hal-development/scenarios/scenarios-configure-rtos

 

A complex system that works is invariably found to have evolved from a simple system that worked.
A complex system designed from scratch never works and cannot be patched up to make it work.

Thank you.