Hello,
I am working with the nRF-SDK-for-Mesh v0.10.1 I am able to compile and run everything fine. I am trying to use the "serial" example and perform a DFU, however the DFU functions in"nrf_mesh_weak.c" are getting linked instead of the real ones…
Hi, I found a bug with weak function declarations in SDK11, using GCC.
app_error_weak.h contains the following declaration:
#ifdef __CC_ARM
void app_error_fault_handler(uint32_t id, uint32_t pc, uint32_t info);
#else
__WEAK void app_error_fault_handler…