From 04721870c84129fed2b911dafbdc39befa326111 Mon Sep 17 00:00:00 2001 From: Andrey Date: Tue, 19 Dec 2023 15:34:53 -0500 Subject: [PATCH] custom FW repos code generation process #5817 preparation --- firmware/controllers/sensors/converters/thermistor_func.h | 4 ++-- firmware/controllers/settings.h | 2 -- firmware/controllers/tcu/gear_controller.h | 2 +- firmware/controllers/tcu/tcu.h | 2 +- firmware/controllers/trigger/decoders/trigger_structure.h | 2 +- firmware/pch/pch.h | 6 +++--- 6 files changed, 8 insertions(+), 10 deletions(-) diff --git a/firmware/controllers/sensors/converters/thermistor_func.h b/firmware/controllers/sensors/converters/thermistor_func.h index e6a6caefa5..9715219b03 100644 --- a/firmware/controllers/sensors/converters/thermistor_func.h +++ b/firmware/controllers/sensors/converters/thermistor_func.h @@ -1,13 +1,13 @@ /** * @author Matthew Kennedy, (c) 2019 - * + * * A function to convert resistance to thermistor temperature (NTC). Uses the * Steinhart-Hart equation to avoid having to compute many logarithms at runtime. */ #pragma once -#include "engine_configuration_generated_structures.h" +#include "generated_lookup_engine_configuration.h" #include "sensor_converter_func.h" class ThermistorFunc final : public SensorConverter { diff --git a/firmware/controllers/settings.h b/firmware/controllers/settings.h index 6d24d8f969..a3cc2d5a80 100644 --- a/firmware/controllers/settings.h +++ b/firmware/controllers/settings.h @@ -8,8 +8,6 @@ #pragma once -#include "engine_configuration_generated_structures.h" - void initSettings(); void printSpiState(); void printConfiguration(); diff --git a/firmware/controllers/tcu/gear_controller.h b/firmware/controllers/tcu/gear_controller.h index 5efad12a59..89e12081cd 100644 --- a/firmware/controllers/tcu/gear_controller.h +++ b/firmware/controllers/tcu/gear_controller.h @@ -3,7 +3,7 @@ #include "global.h" #include "io_pins.h" #include "persistent_configuration.h" -#include "engine_configuration_generated_structures.h" +#include "generated_lookup_engine_configuration.h" #include "simple_tcu.h" #include "tc_4l6x.h" diff --git a/firmware/controllers/tcu/tcu.h b/firmware/controllers/tcu/tcu.h index f2acb78469..acc3341216 100644 --- a/firmware/controllers/tcu/tcu.h +++ b/firmware/controllers/tcu/tcu.h @@ -10,7 +10,7 @@ #include "global.h" #include "io_pins.h" #include "persistent_configuration.h" -#include "engine_configuration_generated_structures.h" +#include "generated_lookup_engine_configuration.h" #include #if EFI_TCU diff --git a/firmware/controllers/trigger/decoders/trigger_structure.h b/firmware/controllers/trigger/decoders/trigger_structure.h index 5c5183c45e..352a590967 100644 --- a/firmware/controllers/trigger/decoders/trigger_structure.h +++ b/firmware/controllers/trigger/decoders/trigger_structure.h @@ -11,7 +11,7 @@ #pragma once #include "state_sequence.h" -#include "engine_configuration_generated_structures.h" +#include "generated_lookup_engine_configuration.h" #include #include "engine_state.h" diff --git a/firmware/pch/pch.h b/firmware/pch/pch.h index f7d6cf266f..fac84df720 100644 --- a/firmware/pch/pch.h +++ b/firmware/pch/pch.h @@ -1,9 +1,9 @@ /** * @file pch.h - * + * * This file is rusEFI's precompiled header. Most cpp files should include * this file in lieu of any of the files below. - * + * * This helps compilation performance by parsing/analyzing these files only * once, then re-loading that precompiled data for every file that includes * this file. @@ -19,7 +19,7 @@ #include #include "global.h" -#include "rusefi_generated.h" +#include "generated_lookup_meta.h" #include "loggingcentral.h" #include "error_handling.h" #include "efi_gpio.h"