rusefi/firmware/console/binary/tunerstudio_outputs.h

64 lines
1.7 KiB
C
Raw Normal View History

2015-07-10 06:01:56 -07:00
/*
2020-05-25 10:02:05 -07:00
* @file tunerstudio_outputs.h
2015-07-10 06:01:56 -07:00
* @brief Tuner Studio connectivity configuration
*
* In this file the configuration of TunerStudio is defined
*
* @date Oct 22, 2013
2020-01-13 18:57:43 -08:00
* @author Andrey Belomutskiy, (c) 2012-2020
2015-07-10 06:01:56 -07:00
*/
#pragma once
2015-07-10 06:01:56 -07:00
#include "rusefi_types.h"
#include "scaled_channel.h"
#include "tunerstudio_debug_struct.h"
#include "ts_outputs_generated.h"
enum class TsCalMode : uint8_t {
None = 0,
Tps1Max = 1,
Tps1Min = 2,
EtbKp = 3,
EtbKi = 4,
EtbKd = 5,
Tps1SecondaryMax = 6,
Tps1SecondaryMin = 7,
Tps2Max = 8,
Tps2Min = 9,
Tps2SecondaryMax = 10,
Tps2SecondaryMin = 11,
};
2015-07-10 06:01:56 -07:00
/**
* todo https://github.com/rusefi/rusefi/issues/197
* At the moment rusEFI does NOT have any code generation around TS output channels, three locations have to be changed manually
2019-12-19 19:40:27 -08:00
* 1) this TunerStudioOutputChannels firmware version of the structure
* 2) '[OutputChannels]' block in rusefi.input
* 3) com.rusefi.core.Sensor enum in rusEFI console source code
2019-12-19 19:40:27 -08:00
*
* status update: there is progress, a portion of this struct is now generated! we inherit from generated
* ts_outputs_s and eventually the whole thing would be generated
*
2015-07-10 06:01:56 -07:00
*/
struct TunerStudioOutputChannels : ts_outputs_s {
2018-01-06 07:53:15 -08:00
/* see also [OutputChannels] in rusefi.input */
scaled_percent accelerationYaw; // 312
scaled_channel<int8_t> vvtTargets[4]; // 314
2021-11-04 16:43:22 -07:00
scaled_channel<uint16_t> turboSpeed; // 318
2021-11-04 16:43:22 -07:00
uint8_t unusedAtTheEnd[18]; // we have some unused bytes to allow compatible TS changes
// Temporary - will remove soon
TsDebugChannels* getDebugChannels() {
return reinterpret_cast<TsDebugChannels*>(&debugFloatField1);
}
2018-01-06 07:53:15 -08:00
/* see also [OutputChannels] in rusefi.input */
2020-07-31 17:08:26 -07:00
/* see also TS_OUTPUT_SIZE in rusefi_config.txt */
};
2015-07-10 06:01:56 -07:00
2019-10-08 18:02:51 -07:00
extern TunerStudioOutputChannels tsOutputChannels;