1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-25 17:25:18 +03:00

Merge branch 'master' into dzikuvx-autolevel

This commit is contained in:
Pawel Spychalski (DzikuVx) 2021-03-13 13:25:47 +01:00
commit 703cbbbf5a
54 changed files with 939 additions and 271 deletions

View file

@ -87,6 +87,7 @@ static const box_t boxes[CHECKBOX_ITEM_COUNT + 1] = {
{ BOXLOITERDIRCHN, "LOITER CHANGE", 49 },
{ BOXMSPRCOVERRIDE, "MSP RC OVERRIDE", 50 },
{ BOXAUTOLEVEL, "AUTO LEVEL", 51 },
{ BOXPREARM, "PREARM", 52 },
{ CHECKBOX_ITEM_COUNT, NULL, 0xFF }
};
@ -164,6 +165,7 @@ void initActiveBoxIds(void)
activeBoxIdCount = 0;
activeBoxIds[activeBoxIdCount++] = BOXARM;
activeBoxIds[activeBoxIdCount++] = BOXPREARM;
if (sensors(SENSOR_ACC) && STATE(ALTITUDE_CONTROL)) {
activeBoxIds[activeBoxIdCount++] = BOXANGLE;