rusefi-1/firmware/controllers/map_averaging.h

26 lines
583 B
C
Raw Normal View History

2015-07-10 06:01:56 -07:00
/**
* @file map_averaging.h
*
* @date Dec 11, 2013
2017-01-03 03:05:22 -08:00
* @author Andrey Belomutskiy, (c) 2012-2017
2015-07-10 06:01:56 -07:00
*/
#ifndef ADC_AVERAGING_H_
#define ADC_AVERAGING_H_
#include "engine.h"
#if EFI_MAP_AVERAGING || defined(__DOXYGEN__)
#if EFI_PROD_CODE || defined(__DOXYGEN__)
2018-02-06 12:58:57 -08:00
void mapAveragingAdcCallback(adcsample_t newValue);
2015-07-10 06:01:56 -07:00
#endif
void initMapAveraging(Logging *sharedLogger, Engine *engine);
void refreshMapAveragingPreCalc(DECLARE_ENGINE_PARAMETER_SIGNATURE);
2018-02-06 13:21:41 -08:00
void postMapState(TunerStudioOutputChannels *tsOutputChannels);
2015-07-10 06:01:56 -07:00
#endif /* EFI_MAP_AVERAGING */
#endif /* ADC_AVERAGING_H_ */