custom FW repos code generation process #5817

preparation
This commit is contained in:
Andrey 2023-12-19 15:34:53 -05:00 committed by rusefillc
parent afe01c365f
commit 04721870c8
6 changed files with 8 additions and 10 deletions

View File

@ -1,13 +1,13 @@
/** /**
* @author Matthew Kennedy, (c) 2019 * @author Matthew Kennedy, (c) 2019
* *
* A function to convert resistance to thermistor temperature (NTC). Uses the * A function to convert resistance to thermistor temperature (NTC). Uses the
* Steinhart-Hart equation to avoid having to compute many logarithms at runtime. * Steinhart-Hart equation to avoid having to compute many logarithms at runtime.
*/ */
#pragma once #pragma once
#include "engine_configuration_generated_structures.h" #include "generated_lookup_engine_configuration.h"
#include "sensor_converter_func.h" #include "sensor_converter_func.h"
class ThermistorFunc final : public SensorConverter { class ThermistorFunc final : public SensorConverter {

View File

@ -8,8 +8,6 @@
#pragma once #pragma once
#include "engine_configuration_generated_structures.h"
void initSettings(); void initSettings();
void printSpiState(); void printSpiState();
void printConfiguration(); void printConfiguration();

View File

@ -3,7 +3,7 @@
#include "global.h" #include "global.h"
#include "io_pins.h" #include "io_pins.h"
#include "persistent_configuration.h" #include "persistent_configuration.h"
#include "engine_configuration_generated_structures.h" #include "generated_lookup_engine_configuration.h"
#include "simple_tcu.h" #include "simple_tcu.h"
#include "tc_4l6x.h" #include "tc_4l6x.h"

View File

@ -10,7 +10,7 @@
#include "global.h" #include "global.h"
#include "io_pins.h" #include "io_pins.h"
#include "persistent_configuration.h" #include "persistent_configuration.h"
#include "engine_configuration_generated_structures.h" #include "generated_lookup_engine_configuration.h"
#include <rusefi/timer.h> #include <rusefi/timer.h>
#if EFI_TCU #if EFI_TCU

View File

@ -11,7 +11,7 @@
#pragma once #pragma once
#include "state_sequence.h" #include "state_sequence.h"
#include "engine_configuration_generated_structures.h" #include "generated_lookup_engine_configuration.h"
#include <rusefi/isnan.h> #include <rusefi/isnan.h>
#include "engine_state.h" #include "engine_state.h"

View File

@ -1,9 +1,9 @@
/** /**
* @file pch.h * @file pch.h
* *
* This file is rusEFI's precompiled header. Most cpp files should include * This file is rusEFI's precompiled header. Most cpp files should include
* this file in lieu of any of the files below. * this file in lieu of any of the files below.
* *
* This helps compilation performance by parsing/analyzing these files only * This helps compilation performance by parsing/analyzing these files only
* once, then re-loading that precompiled data for every file that includes * once, then re-loading that precompiled data for every file that includes
* this file. * this file.
@ -19,7 +19,7 @@
#include <rusefi/efistringutil.h> #include <rusefi/efistringutil.h>
#include "global.h" #include "global.h"
#include "rusefi_generated.h" #include "generated_lookup_meta.h"
#include "loggingcentral.h" #include "loggingcentral.h"
#include "error_handling.h" #include "error_handling.h"
#include "efi_gpio.h" #include "efi_gpio.h"