update struct padding

This commit is contained in:
unknown 2019-01-14 16:01:03 -05:00
parent e6f9ee07b5
commit bcc675f278
2 changed files with 5 additions and 1 deletions

View File

@ -548,7 +548,7 @@ page = 6
#endif
fanWhenOff = bits, U08, 128, [0:0], "No", "Yes"
unused_fan_bits = bits, U08, 128,[1:7]
unused_129_135 = array, U08, 129,[7]
unused6_129_135 = array, U08, 129,[7]
;--------------------------------------------------
;Boost and vvt maps (Page 7)
;--------------------------------------------------

View File

@ -692,7 +692,11 @@ struct config6 {
byte fanHyster; // Fan hysteresis
byte fanFreq; // Fan PWM frequency
byte fanPWMBins[4]; //Temperature Bins for the PWM fan control
byte fanWhenOff : 1; // Only run fan when engine is running
byte fanUnused : 7;
byte unused6_129_135[7];
#if defined(CORE_AVR)
};