This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Radio notification init problem

I am trying the tutorial Radio Notification and was following the patch from Ble_radio_notification wont compile. The radio notification init comes right after the ble enabling:

// Initialize the SoftDevice handler module.
SOFTDEVICE_HANDLER_INIT(&clock_lf_cfg, NULL);
APP_ERROR_CHECK(ble_radio_notification_init(APP_IRQ_PRIORITY_LOW, 
                                            NRF_RADIO_NOTIFICATION_DISTANCE_800US, 
                                            ble_radio_notification_evt_handler));

Inside ble_radio_notification_init the function sd_nvic_EnableIRQ(SWI1_IRQn) fails. The check inside this function:

  if (!__sd_nvic_is_app_accessible_priority(NVIC_GetPriority(IRQn)))
  {
    return NRF_ERROR_SOC_NVIC_INTERRUPT_PRIORITY_NOT_ALLOWED;
  }

gets a strange value of 0x301 from NVIC_GetPriority(IRQn) which is recognized wrong in the following test. How does it come to such a value when processing:

((uint32_t)((NVIC->IP[ _IP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) >> (8 - __NVIC_PRIO_BITS)));

Could it be some kind of environment setting which is wrong?

Parents
  • There was a bug in the older versions of CMSIS core_cm0.h which was fixed (i dont know which version it was fixed, download the latest)

    The new implemenation shows that masking is done correctly with 0XFF (not 0XF which you opted in your code) below is the code from newer core_cm0.h file

    __STATIC_INLINE uint32_t NVIC_GetPriority(IRQn_Type IRQn)
    {
    
      if ((int32_t)(IRQn) < 0)
      {
        return((uint32_t)(((SCB->SHP[_SHP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & (uint32_t)0xFFUL) >> (8U - __NVIC_PRIO_BITS)));
      }
      else
      {
        return((uint32_t)(((NVIC->IP[ _IP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & (uint32_t)0xFFUL) >> (8U - __NVIC_PRIO_BITS)));
      }
    }
    
Reply
  • There was a bug in the older versions of CMSIS core_cm0.h which was fixed (i dont know which version it was fixed, download the latest)

    The new implemenation shows that masking is done correctly with 0XFF (not 0XF which you opted in your code) below is the code from newer core_cm0.h file

    __STATIC_INLINE uint32_t NVIC_GetPriority(IRQn_Type IRQn)
    {
    
      if ((int32_t)(IRQn) < 0)
      {
        return((uint32_t)(((SCB->SHP[_SHP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & (uint32_t)0xFFUL) >> (8U - __NVIC_PRIO_BITS)));
      }
      else
      {
        return((uint32_t)(((NVIC->IP[ _IP_IDX(IRQn)] >> _BIT_SHIFT(IRQn) ) & (uint32_t)0xFFUL) >> (8U - __NVIC_PRIO_BITS)));
      }
    }
    
Children
Related