123456789101112131415161718192021222324 |
- #ifndef HAL_H_
- #define HAL_H_
- typedef enum {
- WEB_ACT = 0,
- SNMP_ACT,
- CLI_ACT,
- FTP_ACT,
- OTHER_ACT,
- AUTO_ACT
- } source_act_t;
- void Reboot(source_act_t source_reset);
- void set_act_source(source_act_t source);
- source_act_t get_act_source(void);
- #endif
|