2019-04-17 03:59 PM
I have STM32H743ZI nucleo board. I want to generate code from CubeMx with FreeRTOS.
But CMSIS RTOS API is mandotary. I dont want to use CMSIS RTOS API as interface. is there any way to generate code with FreeRTOS without CMSIS RTOS API.
Solved! Go to Solution.
2019-04-23 05:33 AM
Hi,
CMSIS-RTOS API is just wrapped around the FreeRTOS API.
Here is what I did: I enabled FreeRTOS in CubeMX, then I simply included the FreeRTOS header files and used its functions.
This has a bit of compilation overhead (useless source code gets compiled anyway), but it works.
2019-04-19 04:01 PM
up
2019-04-23 05:33 AM
Hi,
CMSIS-RTOS API is just wrapped around the FreeRTOS API.
Here is what I did: I enabled FreeRTOS in CubeMX, then I simply included the FreeRTOS header files and used its functions.
This has a bit of compilation overhead (useless source code gets compiled anyway), but it works.
2019-04-25 12:39 PM
Thanks alberto,
I did like that and it worked.