Update settings.h

This commit is contained in:
Adrian Scillato 2018-04-12 01:42:31 -03:00 committed by GitHub
parent 3c024a7f56
commit d8db51ab58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 11 deletions

View File

@ -49,7 +49,7 @@ typedef union { // Restricted by MISRA-C Rule 18.4 bu
uint32_t no_power_on_check : 1; // bit 21 (v5.11.1i)
uint32_t mqtt_serial : 1; // bit 22 (v5.12.0f)
uint32_t rules_enabled : 1; // bit 23 (v5.12.0j)
uint32_t knx_enabled : 1; // bit 24 KNX
uint32_t spare24 : 1;
uint32_t spare25 : 1;
uint32_t spare26 : 1;
uint32_t spare27 : 1;
@ -260,15 +260,7 @@ struct SYSCFG {
char rules[MAX_RULE_SIZE]; // 700
uint16_t knx_physsical_addr; // 800 (address_t is a uint16_t)
byte knx_GA_registered; // 802 Number of Group Address to read
byte knx_CB_registered; // 803 Number of Group Address to write
uint16_t knx_GA_addr[MAX_KNX_GA]; // 817 (address_t is a uint16_t) x KNX_max_GA
uint16_t knx_CB_addr[MAX_KNX_CB]; // 82B (address_t is a uint16_t) x KNX_max_CB
byte knx_GA_param[MAX_KNX_GA]; // 82C Type of Input (relay changed, button pressed, sensor read <-teleperiod)
byte knx_CB_param[MAX_KNX_CB]; // 82D Type of Output (set relay, toggle relay, reply sensor value)
// 82E - FFF free locations
// 800 - FFF free locations
} Settings;
struct RTCMEM {