12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #ifndef NRF_DFU_H__
- #define NRF_DFU_H__
- #include <stdint.h>
- #include <stdbool.h>
- #include "nrf_dfu_types.h"
- #include "nrf_dfu_req_handler.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define NRF_DFU_SCHED_EVENT_DATA_SIZE (sizeof(nrf_dfu_request_t))
- uint32_t nrf_dfu_init(nrf_dfu_observer_t observer);
- #ifdef __cplusplus
- }
- #endif
- #endif
|