mirror of https://github.com/ArduPilot/ardupilot
10 lines
169 B
C++
10 lines
169 B
C++
|
|
||
|
#include "AP_AnalogSource_ADC.h"
|
||
|
|
||
|
int AP_AnalogSource_ADC::read(void)
|
||
|
{
|
||
|
int fullscale = _adc->Ch(_ch);
|
||
|
int scaled = _prescale * fullscale;
|
||
|
return scaled;
|
||
|
}
|