comparison Common/Inc/settings.h @ 526:88c626d01ee5

Added new option to gas configuration: "Off": Added strings and menu definitions needed to implement new state. The new state may be activated in code using the compile switch "ENABLE_UNUSED_GAS_HIDING"
author Ideenmodellierer
date Sun, 13 Sep 2020 20:55:54 +0200
parents 06b21f1e47a5
children d784f281833a
comparison
equal deleted inserted replaced
525:1f557e5f4b5a 526:88c626d01ee5
74 typedef struct{ 74 typedef struct{
75 uint8_t active:1; 75 uint8_t active:1;
76 uint8_t first:1; 76 uint8_t first:1;
77 uint8_t deco:1; 77 uint8_t deco:1;
78 uint8_t travel:1; 78 uint8_t travel:1;
79 uint8_t senderCode:4; 79 uint8_t off:1;
80 uint8_t spare:3;
80 } gasubit8_t; 81 } gasubit8_t;
81 82
82 typedef union{ 83 typedef union{
83 gasubit8_t ub; 84 gasubit8_t ub;
84 uint8_t uw; 85 uint8_t uw;