/* * hal.h * * Created on: 14.06.2017 * Author: balbekova */ #ifndef HAL_H_ #define HAL_H_ typedef enum { WEB_RESET = 0, SNMP_RESET, TELNET_RESET, OTHER_RESET } source_reset_t; void Reboot(source_reset_t source_reset); #endif /* HAL_H_ */