What is "Aux PID"? #4807

This commit is contained in:
rusefillc 2022-11-21 00:10:35 -05:00
parent 8c57a07775
commit ba3d482340
3 changed files with 3 additions and 5 deletions

View File

@ -19,7 +19,7 @@ static gppwm_Map3D_t* tables[] = {
&table4, &table4,
}; };
static char channelNames[GPPWM_CHANNELS][8] = { "GPPWM#1", static const char *channelNames[GPPWM_CHANNELS] = { "GPPWM#1",
"GPPWM#2", "GPPWM#2",
"GPPWM#3", "GPPWM#3",
"GPPWM#4", "GPPWM#4",

View File

@ -122,7 +122,7 @@ void VvtController::setOutput(expected<percent_t> outputValue) {
#if EFI_AUX_PID #if EFI_AUX_PID
static char vvtOutputNames[CAM_INPUTS_COUNT][13] = { static const char *vvtOutputNames[CAM_INPUTS_COUNT] = {
"Vvt Output#1", "Vvt Output#1",
#if CAM_INPUTS_COUNT > 1 #if CAM_INPUTS_COUNT > 1
"Vvt Output#2", "Vvt Output#2",

View File

@ -36,9 +36,7 @@
#define numChannels 6 #define numChannels 6
#define reservedDurationInSamples 10 #define reservedDurationInSamples 10
#define MAX_STRING_SIZE 40 static const char *channelNames[] = { "Primary", "Secondary", "TDC",
static char channelNames[][MAX_STRING_SIZE] = { "Primary", "Secondary", "TDC",
"Sync", "Coil", "Injector", "Channel 6", "Channel 7" }; "Sync", "Coil", "Injector", "Channel 6", "Channel 7" };
static int CHANNEL_FLAGS[] = { 0x13458b, 0x0000ff, 0x00a0f9, 0x00ffff, 0x00ff00, static int CHANNEL_FLAGS[] = { 0x13458b, 0x0000ff, 0x00a0f9, 0x00ffff, 0x00ff00,