• What is best practice for implementing long timers in RTX with a short tick?
    My system: Cortex-M0 at 60 MHz. RTX RTOS with 1ms tick. Since os_tmr_create only takes a U16 timer length, the longest timer I can create with a 1ms tick is 65,535 ms which is just over 1 minute...
  • What is best practice for implementing long timers in RTX with a short tick?
    My system: Cortex-M0 at 60 MHz. RTX RTOS with 1ms tick. Since os_tmr_create only takes a U16 timer length, the longest timer I can create with a 1ms tick is 65,535 ms which is just over 1 minute...
  • Best practice using #define for ISR function names
    Dear Forum, I hope someone could comment on "best practice" advice for a problem I recently encountered. I experienced interrupt handler callbacks not running when the corresponding interrupt was...
  • Best practice using #define for ISR function names
    Dear Forum, I hope someone could comment on "best practice" advice for a problem I recently encountered. I experienced interrupt handler callbacks not running when the corresponding interrupt was...
  • ARM Compiler 6.7: bug in size optimization?
    Source of main.cpp: typedef void (* fun_t)( void ); static const fun_t fun = [] { for (;;); }; int main( void ) { fun(); } Listing: ... Region$$Table$$Base Region$$Table$$Limit main...