Hi,
i am integrating the Buttonless DFU code with BLE proximity example Code. I am getting following Error as shown. Please Help.
Hi,
i am integrating the Buttonless DFU code with BLE proximity example Code. I am getting following Error as shown. Please Help.
Hi,
The initial compiler errors are of type "Unknown type...", which means that you are using a type which is not known to the compiler. A typical reason for this is that you are missing an #include statement. Or you could be missing some define that causes the preprocessor to exclude the definition. In this case, for instance, nrf_dfu_set_adv_name_svci_async_t will only be defined if NRF_DFU_TRANSPORT_BLE is defined and enabled in your projects sdk_config.h.
Hi,
The initial compiler errors are of type "Unknown type...", which means that you are using a type which is not known to the compiler. A typical reason for this is that you are missing an #include statement. Or you could be missing some define that causes the preprocessor to exclude the definition. In this case, for instance, nrf_dfu_set_adv_name_svci_async_t will only be defined if NRF_DFU_TRANSPORT_BLE is defined and enabled in your projects sdk_config.h.
Hi, Thanks , as i defined NRF_DFU_TRANSPORT_BLE , the issue was resolved. Thanks
But now there is another issue, as i debug the code, it goes in NRF_BREAKPOINT_COND with following error code ( 0x00000003 )
can you help how to solve this issue?