12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #ifndef NRF_BOOTLOADER_H__
- #define NRF_BOOTLOADER_H__
- #include <stdint.h>
- #include "nrf_dfu.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- ret_code_t nrf_bootloader_init(nrf_dfu_observer_t observer);
- #ifdef __cplusplus
- }
- #endif
- #endif
|