在 nrf5_SDK_for_Mesh_v4.2.0_src 编译过程中
头文件hal.h中
#define BOOTLOADERADDR() ((*(uint32_t *)MBR_BOOTLOADER_ADDR) == 0xFFFFFFFF ? \
*MBR_UICR_BOOTLOADER_ADDR : *(uint32_t *)MBR_BOOTLOADER_ADDR)
编译错误
'MBR_BOOTLOADER_ADDR' undeclared (first use in this function); did you mean 'BOOTLOADERADDR'?
in expansion of macro 'BOOTLOADERADDR'
each undeclared identifier is reported only once for each function it appears in
in expansion of macro 'BOOTLOADERADDR'
'MBR_UICR_BOOTLOADER_ADDR' undeclared (first use in this function)
in expansion of macro 'BOOTLOADERADDR'
Build failed
MBR_BOOTLOADER_ADDR和'MBR_UICR_BOOTLOADER_ADDR是不是需要在SES中预先设置一下