cancel
Showing results for 
Search instead for 
Did you mean: 

What RTOS is used on STM32F429i eval board GUI Demo?

Embedded_Andy
Associate III

Hello, I have tried to turn on LEDs on the STM32F429i eval board, using buttons and interrupt.  

I also noticed on the touch screen, there is GUI that has some basic operations like opening the folder and playing a simple game.  What kind of RTOS does it use ?  Is it FreeRTOS ?

I have been looking for labs that can be implemented on the board from all sources and put them together.  

It's really hard to find some good examples for the eval board. Is there any official example projects from ST ? 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions

Of course, the whole point of a GUI is that it provides an interface to some functionality.

It might use an RTOS; it might not.

If the source is anywhere, it would be in the Cube Firmware Pack, as @STTwo-32 mentioned.

TouchGFX can certainly work with FreeRTOS.

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

7 REPLIES 7
Andrew Neil
Super User

Take a look at TouchGFX:

https://www.st.com/content/st_com/en/ecosystems/stm32-graphic-user-interface/stm32-mcu.html

https://www.st.com/en/development-tools/touchgfxdesigner.html

https://www.st.com/content/st_com/en/support/learning/stm32-education/stm32-moocs/TouchGFX_webinar_MOOC.html

 

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.
STTwo-32
ST Employee

Hello @Embedded_Andy 

More application for display, FreeRTOS and other are given on the Applications Of the STM32CubeF4 Repository of the STM32F4 series.

Best Regards.

STTwo-32

To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.

Thank you for your prompt reply !

I certainly need to learn TouchGFX .

I feel like the GUI comes with the eval board is more than a GUI, it's a RTOS ? 
Because I can browse files, play the simple game, etc. 

 

Of course, the whole point of a GUI is that it provides an interface to some functionality.

It might use an RTOS; it might not.

If the source is anywhere, it would be in the Cube Firmware Pack, as @STTwo-32 mentioned.

TouchGFX can certainly work with FreeRTOS.

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.

@Andrew Neil wrote:

It might use an RTOS; it might not.


See: https://community.st.com/t5/stm32-mcus-embedded-software/does-the-stm32f429i-eval-board-come-with-freertos-installed/m-p/808064/highlight/true#M64073

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.

 

It comes with either Segger emWin or TouchGFX, depending on the code you upload or the default firmware on the board, which may vary based on the manufacturing date of the evaluation board.

RTOS is important in embedded devices that use a GUI, since driving a display takes time, and it's essential to prioritize the display update cycle—whether it's actively interacting with the user or remaining idle.

With an RTOS, it's easier to schedule tasks to run at specific time intervals.

I've read your posts :) I guess you're just beginning your biggest adventure in the world of embedded systems. These topics can be a bit complex at first, so it's best to start with the basics and get familiar with the STM32 MCU family.

Begin with fundamental peripherals like GPIO (LED toggling), ADC readings, DMA, UART, and timers. Once you're comfortable with those, you can move on to more advanced topics like RTOS and GUI development.

When learning RTOS, focus on understanding the core philosophy behind real-time operating systems rather than just diving into FreeRTOS or any specific RTOS. Most of them are based on the same principles.

GUI development and driving TFT displays are also complex topics. Evaluation boards are primarily meant to showcase the capabilities of the promoted MCU. The example/demo codes provided often lack explanations and are not designed for teaching—they're just demonstrations.

If you try to start with complex topics right away, you'll likely get lost in the example code. Take it step by step.

 

Thank you so much for your detailed suggestions. 

They make perfect sense to me.