What is "Aux PID"? #4807
This commit is contained in:
parent
61b0e91b0e
commit
a32531ee60
|
@ -19,7 +19,7 @@ static gppwm_Map3D_t* tables[] = {
|
|||
&table4,
|
||||
};
|
||||
|
||||
static char channelNames[GPPWM_CHANNELS][8] = { "GPPWM#1",
|
||||
static const char *channelNames[GPPWM_CHANNELS] = { "GPPWM#1",
|
||||
"GPPWM#2",
|
||||
"GPPWM#3",
|
||||
"GPPWM#4",
|
||||
|
|
|
@ -122,7 +122,7 @@ void VvtController::setOutput(expected<percent_t> outputValue) {
|
|||
|
||||
#if EFI_AUX_PID
|
||||
|
||||
static char vvtOutputNames[CAM_INPUTS_COUNT][13] = {
|
||||
static const char *vvtOutputNames[CAM_INPUTS_COUNT] = {
|
||||
"Vvt Output#1",
|
||||
#if CAM_INPUTS_COUNT > 1
|
||||
"Vvt Output#2",
|
||||
|
|
|
@ -36,9 +36,7 @@
|
|||
#define numChannels 6
|
||||
#define reservedDurationInSamples 10
|
||||
|
||||
#define MAX_STRING_SIZE 40
|
||||
|
||||
static char channelNames[][MAX_STRING_SIZE] = { "Primary", "Secondary", "TDC",
|
||||
static const char *channelNames[] = { "Primary", "Secondary", "TDC",
|
||||
"Sync", "Coil", "Injector", "Channel 6", "Channel 7" };
|
||||
|
||||
static int CHANNEL_FLAGS[] = { 0x13458b, 0x0000ff, 0x00a0f9, 0x00ffff, 0x00ff00,
|
||||
|
|
Loading…
Reference in New Issue