Question
Re: Freertos semaphore not initialised correctly by CubeMX
A new question moved from this post.
I have the opposite issue with STM32CubeIDe v1.18 / MX v6.14.0, I want my semaphore initial state to be depleted, but that is not applied to my code:

/* creation of DebugUartStringReadySem */
DebugUartStringReadySemHandle = osSemaphoreNew(1, 1, &DebugUartStringReadySem_attributes);
My .ioc file seems ok:
rtos.0.binarySems.0=allocationType,Dynamic;controlBlockName,NULL;initialState,Depleted;name,DebugUartStringReadySem
