Skip to content

Commit

Permalink
custom FW repos code generation process #5817
Browse files Browse the repository at this point in the history
preparation
  • Loading branch information
rusefillc committed Dec 19, 2023
1 parent 700b033 commit fbb890c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
4 changes: 2 additions & 2 deletions firmware/controllers/sensors/converters/thermistor_func.h
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
2 changes: 0 additions & 2 deletions firmware/controllers/settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@

#pragma once

#include "engine_configuration_generated_structures.h"

void initSettings();
void printSpiState();
void printConfiguration();
Expand Down
2 changes: 1 addition & 1 deletion firmware/controllers/tcu/gear_controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion firmware/controllers/tcu/tcu.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 <rusefi/timer.h>

#if EFI_TCU
Expand Down
2 changes: 1 addition & 1 deletion firmware/controllers/trigger/decoders/trigger_structure.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#pragma once

#include "state_sequence.h"
#include "engine_configuration_generated_structures.h"
#include "generated_lookup_engine_configuration.h"
#include <rusefi/isnan.h>
#include "engine_state.h"

Expand Down
6 changes: 3 additions & 3 deletions firmware/pch/pch.h
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -19,7 +19,7 @@
#include <rusefi/efistringutil.h>

#include "global.h"
#include "rusefi_generated.h"
#include "generated_lookup_meta.h"
#include "loggingcentral.h"
#include "error_handling.h"
#include "efi_gpio.h"
Expand Down

0 comments on commit fbb890c

Please sign in to comment.