This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

there is one error function in nRF5_SDK_12.1.0_0d23e2a

Hi, Nordic engineers I checked there is one error function in nRF5_SDK_12.1.0_0d23e2a:

in nrf_esb.h

uint32_t nrf_esb_get_rf_channel(uint32_t * p_channel);

but in nrf_esb.c

uint32_t nrf_esb_rf_channel_get(uint32_t * p_channel) {

VERIFY_PARAM_NOT_NULL(p_channel);
*p_channel = m_esb_addr.rf_channel;
return NRF_SUCCESS;

}

they should be same one function, but function name is different. I think nrf_esb.c is wrong, it should be nrf_esb_get_rf_channle. Plz check. Thanks.

Parents
  • Hi Chaw,

    In nrf_esb.c the function is named nrf_esb_get_rf_channel(), but in nrf_esb.h the corresponding function is named nrf_esb_rf_channel_get(). The header file is wrong here, and the correct name should be nrf_esb_get_rf_channel().

    Thank you for giving us feedback on this!

  • Wow Nordic... Just came across this isn nrf5 sdk 12.3.0. Doesn't look like it got fixed after 12.1. As we are on nrf51822 platform, any chance of a backported fix, e.g. 12.3.1, bugfix release?

Reply Children
No Data
Related