123456789101112131415161718 |
- #ifndef __BOOTLOADER_H
- #define __BOOTLOADER_H
- #include <stm32f4xx.h>
- typedef enum
- {
- INVALID = 0,
- VALID = !INVALID
- } validity_status;
- typedef void (*pFunction)(void);
- void run_app(void);
- uint8_t check_addr_sp(uint32_t addr);
- uint8_t check_addr_pc(uint32_t addr);
- #endif
|