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
  • IMHO you must change nrf_nvic.h for SDK11 to:

    static inline uint32_t sd_nvic_EnableIRQ(IRQn_Type IRQn)
    {
      if (!__sd_nvic_app_accessible_irq(IRQn))
      {
        return NRF_ERROR_SOC_NVIC_INTERRUPT_NOT_AVAILABLE;
      }
      if (!__sd_nvic_is_app_accessible_priority(NVIC_GetPriority(IRQn)&0xF))
      {
        return NRF_ERROR_SOC_NVIC_INTERRUPT_PRIORITY_NOT_ALLOWED;
      }
    
      if (nrf_nvic_state.__cr_flag)
      {
        nrf_nvic_state.__irq_masks[(uint32_t)((int32_t)IRQn) >> 5] |= (uint32_t)(1 << ((uint32_t)((int32_t)IRQn) & (uint32_t)0x1F));
      }
      else
      {
        NVIC_EnableIRQ(IRQn);
      }
      return NRF_SUCCESS;
    }
    

    After this change ble_radio_notification.c works properly on a nrf51.

Reply
  • IMHO you must change nrf_nvic.h for SDK11 to:

    static inline uint32_t sd_nvic_EnableIRQ(IRQn_Type IRQn)
    {
      if (!__sd_nvic_app_accessible_irq(IRQn))
      {
        return NRF_ERROR_SOC_NVIC_INTERRUPT_NOT_AVAILABLE;
      }
      if (!__sd_nvic_is_app_accessible_priority(NVIC_GetPriority(IRQn)&0xF))
      {
        return NRF_ERROR_SOC_NVIC_INTERRUPT_PRIORITY_NOT_ALLOWED;
      }
    
      if (nrf_nvic_state.__cr_flag)
      {
        nrf_nvic_state.__irq_masks[(uint32_t)((int32_t)IRQn) >> 5] |= (uint32_t)(1 << ((uint32_t)((int32_t)IRQn) & (uint32_t)0x1F));
      }
      else
      {
        NVIC_EnableIRQ(IRQn);
      }
      return NRF_SUCCESS;
    }
    

    After this change ble_radio_notification.c works properly on a nrf51.

Children
No Data
Related