2015-07-10 06:01:56 -07:00
|
|
|
/**
|
|
|
|
* @file allsensors.h
|
|
|
|
* @brief
|
|
|
|
*
|
|
|
|
* This file should have been called 'sensors.h' but there is some conflict
|
|
|
|
* with standard win32 header :(
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @date Nov 15, 2013
|
2017-01-03 03:05:22 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2017
|
2015-07-10 06:01:56 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SENSORS_H_
|
|
|
|
#define SENSORS_H_
|
|
|
|
|
|
|
|
#include "tps.h"
|
|
|
|
#include "map.h"
|
|
|
|
#include "maf.h"
|
|
|
|
#include "ego.h"
|
|
|
|
#include "voltage.h"
|
|
|
|
#include "thermistors.h"
|
2017-11-15 11:30:13 -08:00
|
|
|
#include "oil_pressure.h"
|
2018-01-23 05:34:18 -08:00
|
|
|
#include "flex_fuel.h"
|
2015-07-10 06:01:56 -07:00
|
|
|
#include "adc_inputs.h"
|
|
|
|
|
2017-11-24 16:16:00 -08:00
|
|
|
#include "analog_input.h"
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2017-05-15 20:33:22 -07:00
|
|
|
void initSensors(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_SUFFIX);
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2019-03-02 10:04:26 -08:00
|
|
|
bool hasAcToggle(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
2017-05-15 20:33:22 -07:00
|
|
|
bool getAcToggle(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
2015-07-10 06:01:56 -07:00
|
|
|
|
|
|
|
#endif /*SENSORS_H_*/
|