sketchbook
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
status.h
Go to the documentation of this file.
1 #ifndef STATUS_H
2 #define STATUS_H
3 
4 #include "dev_data.h"
5 #include "features.h"
6 #include "timer.h"
7 
8 #if defined(N_STATUS)
9 
10 typedef enum {
11  S_boot_unknown,
12  S_boot_powerup,
13  S_boot_brownout,
14  S_boot_watchdog,
15  S_boot_external,
16  S_boot_irq = 0x80,
17 } t_status_boot;
18 extern t_status_boot status_boot;
19 
20 #ifdef CONDITIONAL_SEARCH
21 extern uint8_t init_msg;
22 #endif
23 
24 #endif
25 
26 #endif // status_h