fome-fw/firmware/controllers/map_averaging.h

26 lines
510 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
*/
2019-11-14 21:00:13 -08:00
#pragma once
2015-07-10 06:01:56 -07:00
#include "engine.h"
2019-04-12 19:07:03 -07:00
#if EFI_MAP_AVERAGING
2015-07-10 06:01:56 -07:00
2019-04-12 19:07:03 -07:00
#if HAL_USE_ADC
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 DECLARE_ENGINE_PARAMETER_SUFFIX);
void refreshMapAveragingPreCalc(DECLARE_ENGINE_PARAMETER_SIGNATURE);
#if EFI_TUNER_STUDIO
2018-02-06 13:21:41 -08:00
void postMapState(TunerStudioOutputChannels *tsOutputChannels);
#endif
2015-07-10 06:01:56 -07:00
#endif /* EFI_MAP_AVERAGING */