• ARM stack unwinding
    Hi all, Any idea how to perform ARM stack unwinding since cortex-m3 does not have frame pointer? Compiler used is ARMCC. Thanks in advance.
  • stack unwinding, where and how to
    Hello. I have situation where I end up in exception and LR register points to invalid address. uC core is ARM7TDMI and RTX is used. I would like to check stack content and find out what functions...
  • delete task that does not exist
    I am using the RL-RTX Kernel What I am trying to do is delete a task before it is created. As I understand the docs for os_tsk_delete it should return OS_R_NOK if the task cannot be deleted...
  • Create and delete tasks
    Hello all, I'm working with a target based on AT89C51ED2 and RTX-Tiny2. Is it OK to create an X task every 100msec and delete it 10msec after created it? I have a problem in making it working all the...
  • Higher Priority task deleting a lower priority task?
    I have two tasks. task 1: searches for a string in a list of strings (n-strings are stored in the list). task1 priority: low task 2: invoked by uart receive interrupt to abort the search. task 2...