This commit is contained in:
rusefi 2017-05-15 20:16:48 -04:00
parent d72b4bbafe
commit d94a700a82
5 changed files with 17 additions and 6 deletions

View File

@ -1520,6 +1520,9 @@
#define GAUGE_NAME_VBAT "VBatt"
#define GAUGE_NAME_ENGINE_LOAD "Engine Load"
#define GAUGE_NAME_CPU_TEMP "CPU Temperature"
#define INDICATOR_NAME_CLUTCH_UP "clutch: up"
#define INDICATOR_NAME_CLUTCH_DOWN "clutch: down"
#define INDICATOR_NAME_BRAKE_DOWN "brake: down"
#define GAUGE_NAME_WARNING_LAST "warning: last"
#define GAUGE_NAME_WARNING_COUNTER "warning: counter"
#define GAUGE_NAME_KNOCK_LEVEL "knock: current level"

View File

@ -890,6 +890,11 @@ end_struct
#define GAUGE_NAME_ENGINE_LOAD "Engine Load"
#define GAUGE_NAME_CPU_TEMP "CPU Temperature"
#define INDICATOR_NAME_CLUTCH_UP "clutch: up"
#define INDICATOR_NAME_CLUTCH_DOWN "clutch: down"
#define INDICATOR_NAME_BRAKE_DOWN "brake: down"
#define GAUGE_NAME_WARNING_LAST "warning: last"
#define GAUGE_NAME_WARNING_COUNTER "warning: counter"

View File

@ -45,7 +45,7 @@ enable2ndByteCanID = false
; see PAGE_0_SIZE in C source code
; CONFIG_DEFINITION_START
; this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Mon May 15 20:09:29 EDT 2017
; this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Mon May 15 20:14:12 EDT 2017
pageSize = 16376
page = 1
@ -1398,7 +1398,7 @@ fileVersion = { 20161225 }
entry = clutchUpState, "clutch: up",int,"%d"
entry = clutchDownState, "clutch: down",int,"%d"
entry = brakePedalIndicator, "brake pedal",int,"%d"
entry = brakePedalIndicator, "brake: down",int,"%d"
; tpsADC = U16, "ADC",

View File

@ -656,9 +656,9 @@ fileVersion = { 20161225 }
entry = tCharge, "tCharge",float,"%.3f"
entry = clutchUpState, "clutch: up",int,"%d"
entry = clutchDownState, "clutch: down",int,"%d"
entry = brakePedalIndicator, "brake pedal",int,"%d"
entry = clutchUpState, @@INDICATOR_NAME_CLUTCH_UP@@,int,"%d"
entry = clutchDownState, @@INDICATOR_NAME_CLUTCH_DOWN@@,int,"%d"
entry = brakePedalIndicator, @@INDICATOR_NAME_BRAKE_DOWN@@,int,"%d"
; tpsADC = U16, "ADC",

View File

@ -1,6 +1,6 @@
package com.rusefi.config;
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Mon May 15 04:47:12 EDT 2017
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Mon May 15 20:14:12 EDT 2017
public class Fields {
public static final int LE_COMMAND_LENGTH = 200;
public static final int FSIO_ADC_COUNT = 4;
@ -1044,6 +1044,9 @@ public class Fields {
public static final String GAUGE_NAME_VBAT = "VBatt";
public static final String GAUGE_NAME_ENGINE_LOAD = "Engine Load";
public static final String GAUGE_NAME_CPU_TEMP = "CPU Temperature";
public static final String INDICATOR_NAME_CLUTCH_UP = "clutch: up";
public static final String INDICATOR_NAME_CLUTCH_DOWN = "clutch: down";
public static final String INDICATOR_NAME_BRAKE_DOWN = "brake: down";
public static final String GAUGE_NAME_WARNING_LAST = "warning: last";
public static final String GAUGE_NAME_WARNING_COUNTER = "warning: counter";
public static final String GAUGE_NAME_KNOCK_LEVEL = "knock: current level";