• CMSIS-RTOS RTX: something like "osDelay(0)" possible?
    Hi, I like to do a manual thread switch like osDelay will switch to a new thread, but without a timeout value, simply something like osDelay(0). As far as i can see, there is an function osThreadYield...
  • CMSIS-RTOS RTX: something like "osDelay(0)" possible?
    Hi, I like to do a manual thread switch like osDelay will switch to a new thread, but without a timeout value, simply something like osDelay(0). As far as i can see, there is an function osThreadYield...
  • RTX extern task
    Hi, i want to put my tasks into different files but i have some problems i already searched the forum and found this thread: http://www.keil.com/forum/16857/ in my main.c #include <rtl.h...
  • RTX extern task
    Hi, i want to put my tasks into different files but i have some problems i already searched the forum and found this thread: http://www.keil.com/forum/16857/ in my main.c #include <rtl.h...
  • disabling an interrupt like in a task
    hello, I have a task that needs to query the value of a global variable that is also accessed in an ISR. it is a mistake to have the task scheduler preempt my task while the interrupt like is disabled...