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

Buttonless DFU code merge with BLE Proximity

Hi, 

i am integrating the Buttonless DFU code with BLE proximity example Code. I am getting following Error as shown. Please Help.

Parents
  • 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.

Reply
  • 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.

Children
Related