12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #ifndef NRF_BOOTLOADER_APP_START_H__
- #define NRF_BOOTLOADER_APP_START_H__
- #include <stdint.h>
- #include <stdbool.h>
- #include "sdk_errors.h"
- ret_code_t nrf_bootloader_flash_protect(uint32_t address, uint32_t size);
- void nrf_bootloader_app_start(void);
- #endif
|