rusefi-1/firmware/controllers/map_averaging.h

21 lines
367 B
C
Raw Normal View History

2014-08-29 07:52:33 -07:00
/**
* @file map_averaging.h
*
* @date Dec 11, 2013
2015-01-12 15:04:10 -08:00
* @author Andrey Belomutskiy, (c) 2012-2015
2014-08-29 07:52:33 -07:00
*/
#ifndef ADC_AVERAGING_H_
#define ADC_AVERAGING_H_
2014-12-10 09:03:39 -08:00
#include "engine.h"
2014-08-29 07:52:33 -07:00
2014-12-23 20:03:31 -08:00
#if HAL_USE_ADC || defined(__DOXYGEN__)
2014-08-29 07:52:33 -07:00
void mapAveragingCallback(adcsample_t newValue);
2015-01-14 18:03:44 -08:00
void initMapAveraging(Logging *sharedLogger, Engine *engine);
2014-08-29 07:52:33 -07:00
2014-12-23 20:03:31 -08:00
#endif
2014-08-29 07:52:33 -07:00
#endif /* ADC_AVERAGING_H_ */