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

27 lines
543 B
C
Raw Normal View History

2014-08-29 07:52:33 -07:00
/**
* @file maf.h
* @brief
*
2015-02-12 16:08:02 -08:00
* by the way 2.081989116 kg/h = 1 ft<EFBFBD>/m
*
2014-08-29 07:52:33 -07:00
*
* @date Nov 15, 2013
2015-01-12 15:04:10 -08:00
* @author Andrey Belomutskiy, (c) 2012-2015
2014-08-29 07:52:33 -07:00
*/
#ifndef MAF_H_
#define MAF_H_
#include "main.h"
#define getMafT(ec) (getVoltageDivided(ec->mafAdcChannel))
float getMaf(void);
2015-02-12 19:04:12 -08:00
float getRealMaf(DECLARE_ENGINE_PARAMETER_F);
2015-02-11 18:08:16 -08:00
void setBosch0280218037(engine_configuration_s *engineConfiguration);
2015-02-12 20:04:26 -08:00
void setBosch0280218004(engine_configuration_s *engineConfiguration);
2014-08-29 07:52:33 -07:00
2015-02-13 12:04:38 -08:00
void setDensoTODO(engine_configuration_s *engineConfiguration);
2014-08-29 07:52:33 -07:00
#endif