12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #ifndef __NRF_DFU_VER_VALIDATION_H
- #define __NRF_DFU_VER_VALIDATION_H
- #include "stdint.h"
- #include "sdk_errors.h"
- #include "nrf_dfu_handling_error.h"
- #include "dfu-cc.pb.h"
- #define SD_REQ_APP_OVERWRITES_SD 0
- #define SD_REQ_ANY_VERSION (0xFFFE)
- nrf_dfu_result_t nrf_dfu_ver_validation_check(dfu_init_command_t const * p_init);
- #endif
|