From e612bc03bf96ffacc7fa6d059f2c27c422a32e56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Wed, 20 Mar 2024 12:35:18 -0300 Subject: [PATCH 1/7] Blimp: Add missing RebootRequired for SYSID_THISMAV MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- Blimp/Parameters.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Blimp/Parameters.cpp b/Blimp/Parameters.cpp index 70d5e76e7eb91..89dd040e006e9 100644 --- a/Blimp/Parameters.cpp +++ b/Blimp/Parameters.cpp @@ -35,6 +35,7 @@ const AP_Param::Info Blimp::var_info[] = { // @Description: Allows setting an individual MAVLink system id for this vehicle to distinguish it from others on the same network // @Range: 1 255 // @User: Advanced + // @RebootRequired: True GSCALAR(sysid_this_mav, "SYSID_THISMAV", MAV_SYSTEM_ID), // @Param: SYSID_MYGCS From 3f277e4f71a08607b3d10d3912ea78afe16c9ae0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Wed, 20 Mar 2024 12:35:18 -0300 Subject: [PATCH 2/7] ArduSub: Add missing RebootRequired for SYSID_THISMAV MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- ArduSub/Parameters.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ArduSub/Parameters.cpp b/ArduSub/Parameters.cpp index 2be5f65171e20..157d879c40b3b 100644 --- a/ArduSub/Parameters.cpp +++ b/ArduSub/Parameters.cpp @@ -44,6 +44,7 @@ const AP_Param::Info Sub::var_info[] = { // @Description: Allows setting an individual MAVLink system id for this vehicle to distinguish it from others on the same network // @Range: 1 255 // @User: Advanced + // @RebootRequired: True GSCALAR(sysid_this_mav, "SYSID_THISMAV", MAV_SYSTEM_ID), // @Param: SYSID_MYGCS From a8d23a1a1eaa6989f084c18d17e7a9af50a2e148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Wed, 20 Mar 2024 12:35:18 -0300 Subject: [PATCH 3/7] ArduPlane: Add missing RebootRequired for SYSID_THISMAV MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- ArduPlane/Parameters.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ArduPlane/Parameters.cpp b/ArduPlane/Parameters.cpp index 166b141c87bf8..5fa0b447ceeef 100644 --- a/ArduPlane/Parameters.cpp +++ b/ArduPlane/Parameters.cpp @@ -27,6 +27,7 @@ const AP_Param::Info Plane::var_info[] = { // @Range: 1 255 // @Increment: 1 // @User: Advanced + // @RebootRequired: True GSCALAR(sysid_my_gcs, "SYSID_MYGCS", 255), // AP_SerialManager was here From 6577ba3c879d22b6d6f0fe44f4130cb08f6cd8f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Wed, 20 Mar 2024 12:35:18 -0300 Subject: [PATCH 4/7] ArduCopter: Add missing RebootRequired for SYSID_THISMAV MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- ArduCopter/Parameters.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ArduCopter/Parameters.cpp b/ArduCopter/Parameters.cpp index f8f1376c90a2a..07be05012e230 100644 --- a/ArduCopter/Parameters.cpp +++ b/ArduCopter/Parameters.cpp @@ -42,6 +42,7 @@ const AP_Param::Info Copter::var_info[] = { // @Description: Allows setting an individual MAVLink system id for this vehicle to distinguish it from others on the same network // @Range: 1 255 // @User: Advanced + // @RebootRequired: True GSCALAR(sysid_this_mav, "SYSID_THISMAV", MAV_SYSTEM_ID), // @Param: SYSID_MYGCS From 3caa5660721b9caf6b83537f8a0726eaf77e3511 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Wed, 20 Mar 2024 12:35:19 -0300 Subject: [PATCH 5/7] AntennaTracker: Add missing RebootRequired for SYSID_THISMAV MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- AntennaTracker/Parameters.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/AntennaTracker/Parameters.cpp b/AntennaTracker/Parameters.cpp index 12b00cb5c8f37..ebb4dd3b3ba40 100644 --- a/AntennaTracker/Parameters.cpp +++ b/AntennaTracker/Parameters.cpp @@ -17,6 +17,7 @@ const AP_Param::Info Tracker::var_info[] = { // @Description: Allows setting an individual system id for this vehicle to distinguish it from others on the same network // @Range: 1 255 // @User: Advanced + // @RebootRequired: True GSCALAR(sysid_this_mav, "SYSID_THISMAV", MAV_SYSTEM_ID), // @Param: SYSID_MYGCS From 750869e4bb1824c3d2c7ef9b219b3b633eee6e59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Wed, 20 Mar 2024 12:35:18 -0300 Subject: [PATCH 6/7] Rover: Add missing RebootRequired for SYSID_THISMAV MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- Rover/Parameters.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Rover/Parameters.cpp b/Rover/Parameters.cpp index f997e15797720..55bd46420e1b2 100644 --- a/Rover/Parameters.cpp +++ b/Rover/Parameters.cpp @@ -38,6 +38,7 @@ const AP_Param::Info Rover::var_info[] = { // @Description: Allows setting an individual MAVLink system id for this vehicle to distinguish it from others on the same network // @Range: 1 255 // @User: Advanced + // @RebootRequired: True GSCALAR(sysid_this_mav, "SYSID_THISMAV", MAV_SYSTEM_ID), // @Param: SYSID_MYGCS From 163b2950b123d8e0dbff7e48e9b36a8af7637b4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Wed, 20 Mar 2024 12:35:18 -0300 Subject: [PATCH 7/7] AP_Periph: Add missing RebootRequired for SYSID_THISMAV MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- Tools/AP_Periph/Parameters.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Tools/AP_Periph/Parameters.cpp b/Tools/AP_Periph/Parameters.cpp index 3b00ce8bafc85..cebb653b2e4b3 100644 --- a/Tools/AP_Periph/Parameters.cpp +++ b/Tools/AP_Periph/Parameters.cpp @@ -464,6 +464,7 @@ const AP_Param::Info AP_Periph_FW::var_info[] = { // @Description: Allows setting an individual system id for this vehicle to distinguish it from others on the same network // @Range: 1 255 // @User: Advanced + // @RebootRequired: True GSCALAR(sysid_this_mav, "SYSID_THISMAV", MAV_SYSTEM_ID), #endif