Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing RebootRequired for SYSID_THISMAV #26569

Closed
1 change: 1 addition & 0 deletions AntennaTracker/Parameters.cpp
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions ArduCopter/Parameters.cpp
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions ArduPlane/Parameters.cpp
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions ArduSub/Parameters.cpp
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions Blimp/Parameters.cpp
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions Rover/Parameters.cpp
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions Tools/AP_Periph/Parameters.cpp
Expand Up @@ -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

Expand Down