different file names for different entities

This commit is contained in:
Andrey 2022-09-04 23:11:19 -04:00
parent a70d21d789
commit a0b52eeb2f
7 changed files with 7 additions and 7 deletions

View File

@ -11,7 +11,7 @@
#pragma once
#include "rusefi_types.h"
#include "scaled_channel.h"
#include "efi_scaled_channel.h"
#include "output_channels_generated.h"
#ifndef WITH_TS_STATE

View File

@ -1,6 +1,6 @@
#pragma once
#include "scaled_channel.h"
#include "efi_scaled_channel.h"
#include <cstdint>
#include <cstddef>

View File

@ -24,7 +24,7 @@ using time_t = uint32_t;
#include "firing_order.h"
#if __cplusplus
#include "scaled_channel.h"
#include "efi_scaled_channel.h"
#endif
#define DEFAULT_FUEL_LOAD_COUNT 16

View File

@ -9,7 +9,7 @@
#include "pch.h"
#if EFI_CAN_SUPPORT
#include "scaled_channel.h"
#include "efi_scaled_channel.h"
#include "can_msg_tx.h"
#include "can.h"
#include "fuel_math.h"

View File

@ -8,7 +8,7 @@
#pragma once
#include "stored_value_sensor.h"
#include "scaled_channel.h"
#include "efi_scaled_channel.h"
#include "can_msg_tx.h"
#include "obd2.h"
#include "can.h"

View File

@ -11,7 +11,7 @@
#include "efi_interpolation.h"
#include "efilib.h"
#include "efi_ratio.h"
#include "scaled_channel.h"
#include "efi_scaled_channel.h"
// popular left edge of CLT-based correction curves
#define CLT_CURVE_RANGE_FROM -40

View File

@ -1,5 +1,5 @@
/*
* @file scaled_channel.h
* @file efi_scaled_channel.h
* @brief Scaled channel storage for binary formats
*
* Storage of values (floating point, usually) scaled in integer storage, for transmission over the wire.