rusefi-1/unit_tests/boards.cpp

29 lines
356 B
C++
Raw Normal View History

2014-08-29 07:52:33 -07:00
/**
* @file board.c
*
* @date Nov 15, 2013
2015-01-12 16:05:46 -08:00
* @author Andrey Belomutskiy, (c) 2012-2015
2014-08-29 07:52:33 -07:00
*/
#include "boards.h"
float testMafValue = 0;
float getVoltageDivided(int channel) {
switch(channel) {
case TEST_MAF_CHANNEL:
return testMafValue;
}
return 0;
}
float getVoltage(int channel) {
return 0;
}
int getAdcValue(int channel) {
return 0;
}