This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

RTX MainThread def use case

Hi Experts,

I went through the CMSIS RTX code for Cortex-M and bit curious on the features & configurations.

In that I could see osFeature_MainThread  macro is defined for the requirement of main thread feature.

What is the practical use case (merits/de-merits) of using the osFeature_MainThread value as 0/1/.. ?

Parents
  • This requirement came from the 'mbed' project where the main function hides already all the setup. In retro-respective I think that the feature is not needed for deeply embedded systems where you typically setup the hardware and then you could start the osKernel.

Reply
  • This requirement came from the 'mbed' project where the main function hides already all the setup. In retro-respective I think that the feature is not needed for deeply embedded systems where you typically setup the hardware and then you could start the osKernel.

Children