From 15a668feefd4a3ccd9468309ee358fd138eb8ec7 Mon Sep 17 00:00:00 2001 From: Marcelo Bezerra <23555060+mmosca@users.noreply.github.com> Date: Sat, 7 Dec 2024 09:06:24 -0500 Subject: [PATCH] Limit to inav 8 --- js/data_storage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/data_storage.js b/js/data_storage.js index ecf68fda3..a31d94e75 100755 --- a/js/data_storage.js +++ b/js/data_storage.js @@ -2,7 +2,7 @@ var CONFIGURATOR = { // all versions are specified and compared using semantic versioning http://semver.org/ - 'minfirmwareVersionAccepted': '7.0.0', + 'minfirmwareVersionAccepted': '8.0.0', 'maxFirmwareVersionAccepted': '9.0.0', // Condition is < (lt) so we accept all in 8.x branch 'connectionValid': false, 'connectionValidCliOnly': false,