mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-20 23:05:19 +03:00
Fix small_angle type to match CLI
int8_t small_angle prevents using angles>128deg (and thus disabling it with small_angle=180)
This commit is contained in:
parent
2c79d777bc
commit
59df4e502b
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ typedef struct imuRuntimeConfig_s {
|
||||||
uint8_t acc_unarmedcal;
|
uint8_t acc_unarmedcal;
|
||||||
float gyro_cmpf_factor;
|
float gyro_cmpf_factor;
|
||||||
float gyro_cmpfm_factor;
|
float gyro_cmpfm_factor;
|
||||||
int8_t small_angle;
|
uint8_t small_angle;
|
||||||
} imuRuntimeConfig_t;
|
} imuRuntimeConfig_t;
|
||||||
|
|
||||||
void imuConfigure(
|
void imuConfigure(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue