fome-fw/firmware/controllers/sensors/maf.cpp

12 lines
199 B
C++
Raw Normal View History

2014-08-29 07:52:33 -07:00
#include "main.h"
#include "boards.h"
2014-11-11 14:03:38 -08:00
#include "engine.h"
2014-08-29 07:52:33 -07:00
#include "adc_inputs.h"
#include "maf.h"
2014-11-11 14:03:38 -08:00
EXTERN_ENGINE;
2014-08-29 07:52:33 -07:00
2014-11-11 14:03:38 -08:00
float getMaf(DECLARE_ENGINE_PARAMETER_F) {
2014-08-29 07:52:33 -07:00
return getMafT(engineConfiguration);
}