1 #include "stdbool.h" 2 #include "stdint.h" 3 //#include "main.h" 4 5 6 #ifndef __EIF_IOM_H__ 7 #define __EIF_IOM_H__ 8 9 void eif_pull_up_wakeup_io(void); 10 11 void eif_pull_down_wakeup_io(void); 12 13 void eif_pull_up_reset_io(void); 14 15 void eif_pull_down_reset_io(void); 16 17 uint8_t eif_get_status_io_value(void); 18 19 void eif_gpio_init(void); 20 21 void eif_gpio_DeInit(void); 22 23 void eif_gpio_ReInit(void); 24 25 void EXTI_NZ8801_STAIRQ_Config(void); 26 27 void EXTI_NZ8801_STAIRQ_Default(void); 28 29 #endif //__EIF_IOM_H__ 30 31 32 33 34