I am working with a customer who is wanting to use this feature. Because of the existing comment in the example *.cfg file, we are wondering what happens if we intend to use RTOS in ROM and set this option:
/*
* Allows for the implicit posting of events through the semaphore,
* disable for additional code saving.
*
* Pick one:
* - true
* This allows the Semaphore module to post semaphores and events
* simultaneously.
* - false (default)
* Events must be explicitly posted to unblock tasks.
*
* When using BIOS in ROM:
* This option must be set to false.
*/
Semaphore.supportsEvents = true;
//Semaphore.supportsEvents = false;
For example, would the impact be that the Semaphore feature gets pulled into FLASH? ...or would the impact be that the entire RTOS gets pulled into FLASH?
Thanks,
Stuart