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

SDK 14.2: use of ifdef NRF52 in nrf_esb.c

Looking through the ESB implementation in SDK 14.2, nrf_esb.c I notice it uses

#ifdef NRF52

on several places. In nrf.h, the "old" NRF52 gets re-defined as NRF52832_XXAA. This would mean, if I start a new project that only defines the "new" NRF52832_XXAA, these part of the ESB implementation get skipped. I suppose these should be changed to NRF52_SERIES, or are they specific to the NRF52832_XXAA only?

Related