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
|
2020-01-13 18:57:43 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2015-07-10 06:01:56 -07:00
|
|
|
*/
|
|
|
|
|
2020-01-20 22:40:11 -08:00
|
|
|
#pragma once
|
2015-07-10 06:01:56 -07:00
|
|
|
|
|
|
|
#include "tps.h"
|
|
|
|
#include "map.h"
|
|
|
|
#include "maf.h"
|
|
|
|
#include "ego.h"
|
|
|
|
#include "thermistors.h"
|
|
|
|
#include "adc_inputs.h"
|
|
|
|
|
2021-03-07 17:18:32 -08:00
|
|
|
#define LOW_VBATT 7
|
|
|
|
|
2021-11-16 01:15:29 -08:00
|
|
|
void initSensors();
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2021-11-16 01:15:29 -08:00
|
|
|
bool hasAcToggle();
|
|
|
|
bool getAcToggle();
|
2015-07-10 06:01:56 -07:00
|
|
|
|