13 lines
324 B
C
13 lines
324 B
C
#pragma once
|
|
#ifndef __ELITE_ADC_H__
|
|
#define __ELITE_ADC_H__
|
|
|
|
#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);
|
|
|
|
#endif // !__ELITE_ADC_H__
|