1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-21 15:25:36 +03:00

Re-order initialisers to be the same as the structure declation to avoid

GCC compilation error.

Error message is: "sorry, unimplemented: non-trivial designated
initializers not supported"
This commit is contained in:
Dominic Clifton 2015-05-29 19:49:01 +01:00
parent a54b073419
commit 36c8b482d1

View file

@ -241,9 +241,9 @@ protected:
.rcExpo8 = 0, .rcExpo8 = 0,
.thrMid8 = 0, .thrMid8 = 0,
.thrExpo8 = 0, .thrExpo8 = 0,
.rcYawExpo8 = 0,
.rates = {0, 0, 0}, .rates = {0, 0, 0},
.dynThrPID = 0, .dynThrPID = 0,
.rcYawExpo8 = 0,
.tpa_breakpoint = 0 .tpa_breakpoint = 0
}; };