• can you use os_create_task() in an interrupt?
    Is it possible to use os_create_task() from rtx tiny from within an ISR? Can it corrupt the stack?
  • What if invoke os_create_task(a_running_task) ?
    What happens if invoke the os_create_task() when the destination task is already running? Does the os restart the task or just ignore it? Thanks in advance. D.Curie
  • Who can tell me what c51 do in asm when I call OS_CREATE_TASK?
    Who can tell me what c51 do in asm when I call OS_CREATE_TASK?
  • stack frame with function call in interrupt
    I call a short and easy function out of an timer interrupt. This causes the c51 compiler to push all registers (A, B, DPH, DPL, PSW AR0..AR7) to the stack without any necessarity (they are not changed...
  • Call functions
    Hi, I have some assembly routines located in ROM memory, for example asmfunc that is located at address 0xF700 - is absolute address of flash memory. The program memory is organized: ROM code...