This commit is contained in:
rusefi 2017-11-24 17:40:20 -05:00
parent f24021980d
commit 7c31baa327
5 changed files with 7 additions and 4 deletions

View File

@ -23,7 +23,7 @@
#include "adc_inputs.h"
#if EFI_PROD_CODE || EFI_SIMULATOR
#include "adc_math.h"
#include "adc_inputs.h"
#endif
void initSensors(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_SUFFIX);

View File

@ -26,7 +26,7 @@
#include "main.h"
#include "engine_sniffer.h"
#include "adc_math.h"
#include "adc_inputs.h"
#if EFI_ENGINE_SNIFFER || defined(__DOXYGEN__)

View File

@ -1,6 +1,7 @@
/*
* @file adc_external.h
*
* external ADC is probably broken, at least there is a major mess
*
* @date Aug 18, 2013
* @author Andrey Belomutskiy, (c) 2012-2017

View File

@ -1,6 +1,6 @@
/**
* @file adc_inputs.h
* @brief Low level ADC code
* @brief Low level internal ADC code
*
* @date Jan 14, 2013
* @author Andrey Belomutskiy, (c) 2012-2017
@ -10,9 +10,9 @@
#define ADC_INPUTS_H_
#include "main.h"
#include "adc_math.h"
#if HAL_USE_ADC || defined(__DOXYGEN__)
#include "adc_math.h"
const char * getAdcMode(adc_channel_e hwChannel);
void initAdcInputs(bool boardTestMode);

View File

@ -1,6 +1,8 @@
/**
* @file adc_math.h
*
* todo: all this looks to be about internal ADC, merge this file with
*
* @date Mar 18, 2014
* @author Andrey Belomutskiy, (c) 2012-2017
*/