29 lines
659 B
C
29 lines
659 B
C
/**
|
|
* @file maf.h
|
|
* @brief
|
|
*
|
|
* by the way 2.081989116 kg/h = 1 ft³/m
|
|
*
|
|
*
|
|
* @date Nov 15, 2013
|
|
* @author Andrey Belomutskiy, (c) 2012-2017
|
|
*/
|
|
|
|
#ifndef MAF_H_
|
|
#define MAF_H_
|
|
|
|
#include "main.h"
|
|
|
|
#define getMafT(ec) (getVoltageDivided("maf", ec->mafAdcChannel))
|
|
float getMaf(DECLARE_ENGINE_PARAMETER_F);
|
|
bool hasMafSensor(DECLARE_ENGINE_PARAMETER_F);
|
|
float getRealMaf(DECLARE_ENGINE_PARAMETER_F);
|
|
|
|
void setBosch0280218037(persistent_config_s *engineConfiguration);
|
|
void setBosch0280218004(persistent_config_s *engineConfiguration);
|
|
|
|
void setDensoTODO(persistent_config_s *engineConfiguration);
|
|
void setMazdaMiataNAMaf(persistent_config_s *e);
|
|
|
|
#endif
|