Skip to main content
Graduate II
February 25, 2024
Question

No "Signal Management" on FREERTOS

  • February 25, 2024
  • 1 reply
  • 1369 views

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 ?

    This topic has been closed for replies.

    1 reply

    ST Employee
    February 27, 2024

    Hello

    Signals in CMSIS RTOS V1 were replaced by Thread Flags and Event flags in CMSIS OS V2:

    Detailed API Function Differences (keil.com)

     

    OferAuthor
    Graduate II
    March 11, 2024

    Thanks  Guillaume K