• NVIC_EnableIRQ : enables only one interrupt at a time?
    Looking at the one of the implementations of NVIC_EnableIRQ, Im wondering how the ISER works static __INLINE void NVIC_EnableIRQ(IRQn_Type IRQn) { NVIC->ISER[((uint32_t)(IRQn) >> 5)] = (1 << ((uint32_t...
  • NVIC_EnableIRQ : enables only one interrupt at a time?
    Looking at the one of the implementations of NVIC_EnableIRQ, Im wondering how the ISER works static __INLINE void NVIC_EnableIRQ(IRQn_Type IRQn) { NVIC->ISER[((uint32_t)(IRQn) >> 5)] = (1 << ((uint32_t...
  • Diff between RLARM RTX and CMSIS RTX
    Hi Experts, I could find two versions of RTX here. Even though i got an application note on porting RTX to CMSIS RTX I got few confusions with the below links. http://www.keil.com/support/man/docs/rlarm...
  • Diff between RLARM RTX and CMSIS RTX
    Hi Experts, I could find two versions of RTX here. Even though i got an application note on porting RTX to CMSIS RTX I got few confusions with the below links. http://www.keil.com/support/man/docs/rlarm...
  • Code run on RTX-Tiny and not on RTX-Full
    Hello all, My code is based on RTX-Full ver5.1. I minimize the code to interrupt function and a task. When the micro receives int0, the interrupt function is activated and what he do is to read port0...