Skip to content

Commit

Permalink
BUGFIX: parameter download when device == test
Browse files Browse the repository at this point in the history
  • Loading branch information
amilcarlucas committed Jun 3, 2024
1 parent a008b24 commit b5bc274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MethodicConfigurator/ardupilot_methodic_configurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def main(): # pylint: disable=too-many-branches
vehicle_type = "ArduCopter"
logging_warning("Could not detect vehicle type. Defaulting to ArduCopter.")

if flight_controller.master is not None:
if flight_controller.master is not None or args.device == 'test':
FlightControllerInfoWindow(flight_controller)

try:
Expand Down

0 comments on commit b5bc274

Please sign in to comment.