29 lines
444 B
C
29 lines
444 B
C
/**
|
|
* @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
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "tps.h"
|
|
#include "map.h"
|
|
#include "maf.h"
|
|
#include "ego.h"
|
|
#include "thermistors.h"
|
|
#include "adc_inputs.h"
|
|
|
|
#define LOW_VBATT 7
|
|
|
|
void initSensors();
|
|
|
|
bool hasAcToggle();
|
|
bool getAcToggle();
|
|
|