rusefi/unit_tests/boards.cpp

23 lines
378 B
C++

/**
* @file board.cpp
*
* @date Nov 15, 2013
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#include "pch.h"
#include "boards.h"
int adcGetRawValue(const char *msg, adc_channel_e hwChannel) {
return 0;
}
float adcGetRawVoltage(const char *msg, adc_channel_e hwChannel) {
return 0;
}
float adcGetScaledVoltage(const char *msg, adc_channel_e hwChannel) {
return 0;
}