hal.h 271 B

123456789101112131415161718192021
  1. /*
  2. * hal.h
  3. *
  4. * Created on: 14.06.2017
  5. * Author: balbekova
  6. */
  7. #ifndef HAL_H_
  8. #define HAL_H_
  9. typedef enum {
  10. WEB_RESET = 0,
  11. SNMP_RESET,
  12. TELNET_RESET,
  13. OTHER_RESET
  14. } source_reset_t;
  15. void Reboot(source_reset_t source_reset);
  16. #endif /* HAL_H_ */