20 lines
384 B
C
20 lines
384 B
C
#ifndef __ELITE_ADC_H__
|
|
#define __ELITE_ADC_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
|
|
void IinADCGainCtrl(uint8_t IinADCLevel);
|
|
void VinADCGainCtrl(uint8_t VinADCLevel);
|
|
void AutoGainChangeIin(int32_t RealCurrent, uint16_t plot_type, uint16_t *no_rec_time);
|
|
void AutoGainChangeVin(int32_t RealVin);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ! __ELITE_ADC_H__ */
|