You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
404 B

2 weeks ago
#ifndef CHECK_PIN_H
#define CHECK_PIN_H
#include "r_cg_macrodriver.h"
#include "r_cg_port.h"
#ifdef __cplusplus
extern "C" {
#endif
void check_pin_init(void);
/**
* ä(ch=1~20) CHECK on/off
* ) ch=2 -> CHECK_2(P155)
*/
void check_pin(uint8_t ch, uint8_t on);
/** (�ɼ�) CHECK_1~CHECK_20 ��ü OFF */
void check_all_off(void);
#ifdef __cplusplus
}
#endif
#endif /* CHECK_PIN_H */