21 lines
333 B
C
21 lines
333 B
C
/*
|
|
* analog_input.h
|
|
*
|
|
* @date Nov 24, 2017
|
|
* @author Andrey Belomutskiy, (c) 2012-2017
|
|
*/
|
|
|
|
#ifndef CONTROLLERS_SENSORS_ANALOG_INPUT_H_
|
|
#define CONTROLLERS_SENSORS_ANALOG_INPUT_H_
|
|
|
|
#if EFI_PROD_CODE
|
|
#include "adc_inputs.h"
|
|
#endif
|
|
|
|
#if EFI_SIMULATOR
|
|
#include "adc_math.h"
|
|
#endif
|
|
|
|
|
|
#endif /* CONTROLLERS_SENSORS_ANALOG_INPUT_H_ */
|