From 9ef7a1ca1e8c5db6839e0a05c6546262b1737f77 Mon Sep 17 00:00:00 2001 From: Vladimir Demidov Date: Mon, 25 Nov 2024 20:25:16 +0300 Subject: [PATCH] Attitude field added to blackbox fields list (#4248) * added 'Attitude' field in blackbox list * The new attitude field is compatible with older versions --- src/js/debug.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/js/debug.js b/src/js/debug.js index e6cc5fcf..5a2a0731 100644 --- a/src/js/debug.js +++ b/src/js/debug.js @@ -834,6 +834,7 @@ function update() { 'debug[6]': 'Altitude D', 'debug[7]': 'Altitude F', }; + DEBUG.enableFields.splice(DEBUG.enableFields.indexOf("Gyro"), 0, "Attitude"); } }