• os_tsk_create_user definition
    Hi ! In Keil os_tsk_create_user() doc it passes a void* for the stack parameter, but in the example (and example code in uVision) we do the following : static U64 stk2[400/8]; ... os_tsk_create_user...
  • os_tsk_create_user definition
    Hi ! In Keil os_tsk_create_user() doc it passes a void* for the stack parameter, but in the example (and example code in uVision) we do the following : static U64 stk2[400/8]; ... os_tsk_create_user...
  • os_tsk_create_user() and number of bytes in stack
    How does one figure out what size stack to use for a task? This is to use for the library function: OS_TID os_tsk_create_user( void (*task)(void), /* Task to create */ U8 priority, /* Task...
  • os_tsk_create_user() and number of bytes in stack
    How does one figure out what size stack to use for a task? This is to use for the library function: OS_TID os_tsk_create_user( void (*task)(void), /* Task to create */ U8 priority, /* Task...
  • Bootloader RTX jump RTX app
    Hello ! I am working on bootloader application using RTX on mdk 5. The bootloader load the user application using Ethernet communication and proceed to the jump after a reset. When i use an simple...