#ifndef __IO_PIN_H__ #define __IO_PIN_H__ #define IO_PIN_INPUT_NUMBER 20 #define IO_PIN_OUTPUT_NUMBER 19 void hw_io_pin_init(void); void hw_io_pin_output(unsigned short index, int sta); int hw_io_pin_input(unsigned short index); void hw_io_output_enable(void); void hw_io_output_disable(void); int hw_io_power_is_off(void); void hw_io_close_all(void); #endif