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.

Related