parent
afe01c365f
commit
04721870c8
|
@ -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 {
|
||||
|
|
|
@ -8,8 +8,6 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "engine_configuration_generated_structures.h"
|
||||
|
||||
void initSettings();
|
||||
void printSpiState();
|
||||
void printConfiguration();
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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 <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"
|
||||
|
|
Loading…
Reference in New Issue