with hardware oversampling

This commit is contained in:
Noah Piqué
2021-11-17 11:35:41 +01:00
parent e15e692e89
commit 04d2bab659
10 changed files with 42 additions and 14 deletions

View File

@ -159,7 +159,7 @@ BOOL ANPO_boSetVoltage( FLOAT Voltage ){
U32 u32ConvertVoltagetoRaw( FLOAT Voltage ){
U32 RawData;
RawData = Voltage * 4095 / 3.28;
RawData = Voltage * 4095 / 3.3;
return RawData;
}