| 12345678910111213141516171819202122 |
- #ifndef APP_FLASH_H__
- #define APP_FLASH_H__
- #include <stdint.h>
- #include <stdio.h>
- #include <string.h>
- #include <stdbool.h>
- #include "nordic_common.h"
- #include "bootloader_types.h"
- #include "pstorage.h"
- #include <dfu_types.h>
- //uint32_t flash_upgrade_op(void);
- uint32_t dfu_app_image_swap(void);
- uint16_t reset_data_flash_update(uint8_t *src,uint16_t size,uint16_t offset);
- #endif /*APP_FLASH_H__*/
|