1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-23 16:25:16 +03:00

Do not backup the multi module struct

This commit is contained in:
Arne Schwabe 2016-03-25 14:09:17 +01:00
parent 5d19adb1eb
commit c09c3e0a2b

View file

@ -697,12 +697,12 @@ PACK(struct ModuleData {
uint8_t outputType:1; // false = open drain, true = push pull uint8_t outputType:1; // false = open drain, true = push pull
int8_t frameLength; int8_t frameLength;
} ppm; } ppm;
struct { NOBACKUP(struct {
uint8_t rfProtocol:6; // can be changed to rfProtocol if rfProtocol gets more bits, currently 6 bits used uint8_t rfProtocol:6; // can be changed to rfProtocol if rfProtocol gets more bits, currently 6 bits used
uint8_t autoBindMode:1; uint8_t autoBindMode:1;
uint8_t lowPowerMode:1; uint8_t lowPowerMode:1;
int8_t optionValue; int8_t optionValue;
} multi; } multi);
}; };
}); });