You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove all older NRF macros in the sdk_config.h file. As described at https://devzone.nordicsemi.com/f/nordic-q-a/60127/compare-sdk_config-files there are issues caused by the existence of the older macros. As soon as such a macro exists the file apply_old_config.h will undef all corresponding NRFX macros.
The problem is that sdk_config.h actually defines those macros even if you don't do this yourself in sdk_config.h or app_config.h. So you will see statements like:
Suddenly an old macro is defined and next the corresponding NRFX macros will be undefined by apply_old_config.h. Hence, remove all legacy macro ifndef define endif statements in sdk_config.h to fix this.
The text was updated successfully, but these errors were encountered:
Remove all older NRF macros in the
sdk_config.h
file. As described at https://devzone.nordicsemi.com/f/nordic-q-a/60127/compare-sdk_config-files there are issues caused by the existence of the older macros. As soon as such a macro exists the fileapply_old_config.h
will undef all corresponding NRFX macros.The problem is that
sdk_config.h
actually defines those macros even if you don't do this yourself insdk_config.h
orapp_config.h
. So you will see statements like:Suddenly an old macro is defined and next the corresponding NRFX macros will be undefined by
apply_old_config.h
. Hence, remove all legacy macroifndef define endif
statements insdk_config.h
to fix this.The text was updated successfully, but these errors were encountered: