Core
Loading...
Searching...
No Matches
boot.h
1#include <stdint.h>
2#include "core_config.h"
3
4#ifndef CORE_BOOT_H
5#define CORE_BOOT_H
6
7void core_boot_init();
8void core_boot_reset_and_enter();
9
10#if defined(CORE_BOOT_EXTERNAL) && (CORE_BOOT_EXTERNAL == 1)
11extern void core_boot_external_read(uint8_t *ptr, uint32_t address, uint32_t length);
12extern void core_boot_external_write(uint8_t *ptr, uint32_t address, uint32_t length);
13extern void core_boot_external_enter();
14extern void core_boot_external_exit();
15#endif
16
17#endif
Configuration file for the core library.