2024-02-24 06:44 PM
Hi
I use STM32WB55CGUX with FREE_RTOS.
I want to use SIGNALS with command such: osSignalWait, osSignalClear and osSignalSet.
I see those functions in cmsis_os.h file but I see no implementation to those functions.
There is a cmsis_os2.c file (instead of cmsis_os.c) and in this file there is no "SIgnal Management".
What is wrong ?
2024-02-27 02:38 AM
Hello
Signals in CMSIS RTOS V1 were replaced by Thread Flags and Event flags in CMSIS OS V2:
Detailed API Function Differences (keil.com)
2024-03-11 02:46 PM
Thanks Guillaume K