map averaging includes

This commit is contained in:
Matthew Kennedy 2024-08-29 13:28:44 -07:00
parent 6fc52a1430
commit 12321d4325
9 changed files with 0 additions and 15 deletions

View File

@ -69,10 +69,6 @@ extern bool main_loop_started;
#include "flash_main.h"
#endif
#if EFI_MAP_AVERAGING
#include "map_averaging.h"
#endif
#if (BOARD_TLE8888_COUNT > 0)
#include "tle8888.h"
#endif /* BOARD_TLE8888_COUNT */

View File

@ -17,7 +17,6 @@
#include "speed_density.h"
#include "advance_map.h"
#include "map_averaging.h"
#include "perf_trace.h"
#include "backup_ram.h"
#include "idle_thread.h"

View File

@ -32,7 +32,6 @@
#include "flash_main.h"
#include "bench_test.h"
#include "electronic_throttle.h"
#include "map_averaging.h"
#include "high_pressure_fuel_pump.h"
#include "malfunction_central.h"
#include "malfunction_indicator.h"

View File

@ -30,7 +30,6 @@
#if EFI_ENGINE_CONTROL && EFI_SHAFT_POSITION_INPUT
#include "spark_logic.h"
#include "map_averaging.h"
static void handleFuel(efitick_t nowNt, float currentPhase, float nextPhase) {
ScopePerf perf(PE::HandleFuel);

View File

@ -25,7 +25,6 @@
#if EFI_MAP_AVERAGING
#include "map_averaging.h"
#include "trigger_central.h"
#if EFI_SENSOR_CHART

View File

@ -9,7 +9,6 @@
#include "resistance_func.h"
#include "thermistor_func.h"
#include "identity_func.h"
#include "map_averaging.h"
void ProxySensor::showInfo(const char* sensorName) const {
efiPrintf("Sensor \"%s\" proxied from sensor \"%s\"", sensorName, getSensorName(m_proxiedSensor));

View File

@ -47,10 +47,6 @@
#include "mc33816.h"
#endif /* EFI_MC33816 */
#if EFI_MAP_AVERAGING
#include "map_averaging.h"
#endif
#if EFI_INTERNAL_FLASH
#include "flash_main.h"
#endif

View File

@ -11,7 +11,6 @@
#if HAL_USE_ADC
#include "mpu_util.h"
#include "map_averaging.h"
#ifdef ADC_MUX_PIN
#error "ADC mux not yet supported on STM32H7"

View File

@ -4,7 +4,6 @@
#include "linear_func.h"
#include "fallback_sensor.h"
#include "functional_sensor.h"
#include "map_averaging.h"
static LinearFunc baroConverter;
static FunctionalSensor baroSensor(SensorType::BarometricPressure, MS2NT(50));