Files
stm8loader/bsp/inc/bootloader.h
2025-12-17 15:32:11 +08:00

13 lines
233 B
C

#ifndef _BOOTLOADER_H_
#define _BOOTLOADER_H_
#define ENABLE_OPTION_BOOTLOADER
#ifdef ENABLE_OPTION_BOOTLOADER
extern void bootloader_enter(void) __trap __naked;
#endif /* ENABLE_OPTION_BOOTLOADER */
#endif /* _BOOTLOADER_H_ */