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.
|
|
|
|
#ifndef ANAOUT_H
|
|
|
|
|
#define ANAOUT_H
|
|
|
|
|
|
|
|
|
|
#include "r_cg_macrodriver.h"
|
|
|
|
|
#include "r_cg_port.h"
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void ANAOUT_Set(uint8_t ch, uint8_t on);
|
|
|
|
|
|
|
|
|
|
/** ��ü ä�� OFF */
|
|
|
|
|
void ANAOUT_AllOff(void);
|
|
|
|
|
|
|
|
|
|
/** ä�� ����(= ��ü OFF �� �ش� ä�� ON) */
|
|
|
|
|
void ANAOUT_Select(uint8_t ch);
|
|
|
|
|
|
|
|
|
|
void anaout_pin(uint8_t ch, uint8_t on);
|
|
|
|
|
|
|
|
|
|
/** ��ü OFF wrapper */
|
|
|
|
|
void anaout_all_off(void);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* ANAOUT_H */
|