CMSIS RTOS v1 Semaphore Problems
Hi, I have a problem with CMSIS RTOS v1 using STM32F103RET6. I have about 6 - 7 tasks. The first task is the StartDefaultTask, after finishing initializing, when running to osSemaphoreRelease, it gets to configAssert(pxQueue) and loop forever. The semaphore is reference to another task, which the task combines at least two semaphores to work. Can anyone meet this before? Also the task which combines two semaphores work like this, where the callback_timeout is released from the StartDefaultTask
if(osSemaphoreWait(save_data, osWaitForever) == osOK){
if(osSemaphoreWait(callback_timeout,osWaitForever)==osOK){
