mirror of https://github.com/arendst/Tasmota.git
Align new settings to 2B boundaries
Attempting to fix settings not working correctly (might have mucked up the boundaries and compiler put a padding byte in).
This commit is contained in:
parent
ce2696fef0
commit
bd33574ee7
|
@ -569,12 +569,12 @@ struct {
|
||||||
uint16_t windmeter_pulse_debounce; // F3A
|
uint16_t windmeter_pulse_debounce; // F3A
|
||||||
int16_t windmeter_speed_factor; // F3C
|
int16_t windmeter_speed_factor; // F3C
|
||||||
uint8_t windmeter_tele_pchange; // F3E
|
uint8_t windmeter_tele_pchange; // F3E
|
||||||
uint16_t ledpwm_on; // F3F
|
|
||||||
uint16_t ledpwm_off; // F41
|
|
||||||
|
|
||||||
uint8_t free_f42[117]; // F42 - Decrement if adding new Setting variables just above and below
|
uint8_t free_f3f[117]; // F3F - Decrement if adding new Setting variables just above and below
|
||||||
|
|
||||||
// Only 32 bit boundary variables below
|
// Only 32 bit boundary variables below
|
||||||
|
uint16_t ledpwm_on; // FB4
|
||||||
|
uint16_t ledpwm_off; // FB6
|
||||||
uint16_t pulse_counter_debounce_low; // FB8
|
uint16_t pulse_counter_debounce_low; // FB8
|
||||||
uint16_t pulse_counter_debounce_high; // FBA
|
uint16_t pulse_counter_debounce_high; // FBA
|
||||||
uint32_t keeloq_master_msb; // FBC
|
uint32_t keeloq_master_msb; // FBC
|
||||||
|
|
Loading…
Reference in New Issue