2023-01-08 06:07 PM
Hi, may i know why i get this error when disable the FreeRtos function?
i did'nt include any of freertos library anymore but why it still state the error no librray
2023-01-08 11:25 PM
You have, somewhere, included cmsis_os.h file, that is not present anymore. From the error, you did it in TouchGFXConfiguration.cpp file.
2023-01-09 04:18 PM
oh why it not automatically uninclude all the library when i disable the freertos function? btw is it compulsory to use the Freertos if using the touchgfx?
2023-01-09 10:17 PM
Hello,
You can use whatever OS you wish with TouchGFX, for example the STM32U599dk TBS uses ThreadX and the STM32G0nucleo does not use any (bare metal).
There is an article on the online documentation on how to disable Freertos that might help you. The reason why it automatically does not unincluded all libraries is often done on purpose as we do not want to delete things that were not meant to (unclicked by accident for example) especially for sections with custom codes. Now in this case I am not sure exactly but like Tilen said just delete the lines, links and files yourself.
/Romain