removing dead property customUseRiseEdge

This commit is contained in:
rusefi 2017-02-22 21:28:31 -05:00
parent 258046a8a0
commit 134511aae5
9 changed files with 4849 additions and 4852 deletions

View File

@ -5,6 +5,7 @@ current binaries are always available at http://rusefi.com/build_server/
| Release date | Revision | Details |
| ------------ | --------- | ------- |
| 02/22/2017 | r2973 | unused property 'custom Use Rise Edge' removed |
| 02/22/2017 | r2972 | protocol signature changed to 'v0.02' (this would happen from time to time to ensure version match between console and TS project |
| 02/20/2017 | r2939 | https://github.com/rusefi/rusefi is now the official primary repository |
| 02/18/2017 | r11565 | improvement: level1 default brown out https://sourceforge.net/p/rusefi/tickets/354/ |

View File

@ -1,4 +1,4 @@
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sat Feb 18 13:57:17 EST 2017
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Wed Feb 22 21:26:04 EST 2017
// begin
#ifndef ENGINE_CONFIGURATION_GENERATED_H_
#define ENGINE_CONFIGURATION_GENERATED_H_
@ -255,7 +255,7 @@ typedef struct {
/**
* offset 24
*/
bool32_t customUseRiseEdge;
bool32_t unusedcustomUseRiseEdge;
/** total size 28*/
} trigger_config_s;
@ -2051,4 +2051,4 @@ typedef struct {
#endif
// end
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sat Feb 18 13:57:17 EST 2017
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Wed Feb 22 21:26:04 EST 2017

View File

@ -239,8 +239,8 @@
#define trigger_unusedcustomSyncRatioFrom_offset 552
#define trigger_unusedcustomSyncRatioFrom_offset_hex 228
#define trigger_unusedcustomSyncRatioTo_offset 556
#define trigger_customUseRiseEdge_offset 560
#define trigger_customUseRiseEdge_offset_hex 230
#define trigger_unusedcustomUseRiseEdge_offset 560
#define trigger_unusedcustomUseRiseEdge_offset_hex 230
#define hip9011SpiDevice_offset 564
#define hip9011SpiDevice_offset_hex 234
#define globalFuelCorrection_offset 568

View File

@ -353,7 +353,7 @@ custom trigger_type_e 4 bits, U32, @OFFSET@, [0:5], @@trigger_type_e_enum@@
float unusedcustomSyncRatioFrom;;"number", 1, 0.0, 0, 1000.0, 4
float unusedcustomSyncRatioTo;;"number", 1, 0.0, 0, 1000.0, 4
bool32_t customUseRiseEdge;
bool32_t unusedcustomUseRiseEdge;
end_struct
trigger_config_s trigger;

View File

@ -249,5 +249,5 @@ int getRusEfiVersion(void) {
return 123; // this is here to make the compiler happy about the unused array
if (UNUSED_CCM_SIZE[0] * 0 != 0)
return 3211; // this is here to make the compiler happy about the unused array
return 20170220;
return 20170222;
}

View File

@ -42,7 +42,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 Wed Feb 22 21:11:22 EST 2017
; this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Wed Feb 22 21:26:04 EST 2017
pageSize = 16376
page = 1
@ -163,7 +163,7 @@ page = 1
trigger_customSkippedToothCount = scalar, S32, 548, "number", 1, 0.0, 0, 500.0, 0
trigger_unusedcustomSyncRatioFrom = scalar, F32, 552, "number", 1, 0.0, 0, 1000.0, 4
trigger_unusedcustomSyncRatioTo = scalar, F32, 556, "number", 1, 0.0, 0, 1000.0, 4
trigger_customUseRiseEdge = bits, U32, 560, [0:0], "false", "true"
trigger_unusedcustomUseRiseEdge = bits, U32, 560, [0:0], "false", "true"
hip9011SpiDevice = bits,U32, 564, [0:1], "Off", "SPI1", "SPI2", "SPI3"
globalFuelCorrection = scalar, F32, 568, "coef", 1, 0.0, 0, 1000.0, 2
pedalPositionMin = scalar, S16, 572, "ADC", 1, 0, 0, 1023, 0
@ -1560,9 +1560,7 @@ cmd_test_idle_valve = "w\x00\x17\x00\x01"
field = "#Custom Trigger"
field = "total Tooth Count", trigger_customTotalToothCount, {trigger_type == 0}
field = "skipped Tooth Count", trigger_customSkippedToothCount, {trigger_type == 0}
; field = "sync Ratio From", trigger_customSyncRatioFrom, {trigger_type == 0}
; field = "sync Ratio To", trigger_customSyncRatioTo, {trigger_type == 0}
field = "use Rise Edge?", trigger_customUseRiseEdge, {trigger_type == 0}
dialog = triggerConfiguration_IO, "Settings I/O"
field = "!ECU reboot needed to apply pin assignment"
field = "#Cam is primary if you have cam sensor"

View File

@ -1492,9 +1492,7 @@ cmd_test_idle_valve = "w\x00\x17\x00\x01"
field = "#Custom Trigger"
field = "total Tooth Count", trigger_customTotalToothCount, {trigger_type == 0}
field = "skipped Tooth Count", trigger_customSkippedToothCount, {trigger_type == 0}
; field = "sync Ratio From", trigger_customSyncRatioFrom, {trigger_type == 0}
; field = "sync Ratio To", trigger_customSyncRatioTo, {trigger_type == 0}
field = "use Rise Edge?", trigger_customUseRiseEdge, {trigger_type == 0}
dialog = triggerConfiguration_IO, "Settings I/O"
field = "!ECU reboot needed to apply pin assignment"
field = "#Cam is primary if you have cam sensor"

View File

@ -1,6 +1,6 @@
package com.rusefi.config;
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sat Feb 18 13:57:17 EST 2017
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Wed Feb 22 21:26:04 EST 2017
public class Fields {
public static final int LE_COMMAND_LENGTH = 200;
public static final int FSIO_ADC_COUNT = 4;
@ -243,8 +243,8 @@ public class Fields {
public static final int trigger_unusedcustomSyncRatioFrom_offset = 552;
public static final int trigger_unusedcustomSyncRatioFrom_offset_hex = 228;
public static final int trigger_unusedcustomSyncRatioTo_offset = 556;
public static final int trigger_customUseRiseEdge_offset = 560;
public static final int trigger_customUseRiseEdge_offset_hex = 230;
public static final int trigger_unusedcustomUseRiseEdge_offset = 560;
public static final int trigger_unusedcustomUseRiseEdge_offset_hex = 230;
public static final int hip9011SpiDevice_offset = 564;
public static final int hip9011SpiDevice_offset_hex = 234;
public static final int globalFuelCorrection_offset = 568;
@ -1125,7 +1125,7 @@ public class Fields {
public static final Field TRIGGER_CUSTOMSKIPPEDTOOTHCOUNT = Field.create("TRIGGER_CUSTOMSKIPPEDTOOTHCOUNT", 548, FieldType.INT);
public static final Field TRIGGER_UNUSEDCUSTOMSYNCRATIOFROM = Field.create("TRIGGER_UNUSEDCUSTOMSYNCRATIOFROM", 552, FieldType.FLOAT);
public static final Field TRIGGER_UNUSEDCUSTOMSYNCRATIOTO = Field.create("TRIGGER_UNUSEDCUSTOMSYNCRATIOTO", 556, FieldType.FLOAT);
public static final Field TRIGGER_CUSTOMUSERISEEDGE = Field.create("TRIGGER_CUSTOMUSERISEEDGE", 560, FieldType.INT);
public static final Field TRIGGER_UNUSEDCUSTOMUSERISEEDGE = Field.create("TRIGGER_UNUSEDCUSTOMUSERISEEDGE", 560, FieldType.INT);
public static final Field HIP9011SPIDEVICE = Field.create("HIP9011SPIDEVICE", 564, FieldType.INT);
public static final Field GLOBALFUELCORRECTION = Field.create("GLOBALFUELCORRECTION", 568, FieldType.FLOAT);
public static final Field PEDALPOSITIONMIN = Field.create("PEDALPOSITIONMIN", 572, FieldType.INT);