blob: 3a7225e113bf2ea706f0e9dfee1a4c1f61ac1b62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef FALLBACK_H
#define FALLBACK_H
#if !defined(__ASSEMBLER__)
void boot_successful(void);
void set_boot_successful(void);
#endif /* __ASSEMBLER__ */
#define RTC_BOOT_BYTE 48
#endif /* FALLBACK_H */
|