Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ros2-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
Environment Overrides:
- UAV_SIM=false (already set in hardware config)
- UAV_MISSION=mission_name
- UAV_DEBUG=true/false
- VERBOSE=true/false
- UAV_LAUNCH_PARAMS=/path/to/custom/params.yaml
EOF

Expand Down
6 changes: 3 additions & 3 deletions controls/sae_2025_ws/src/integration/frontend/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ const LAUNCH_PARAM_FIELDS = [
help: 'Mission profile identifier used by launch.',
},
{
key: 'uav_debug',
label: 'UAV debug',
key: 'verbose',
label: 'Verbose',
type: 'boolean',
help: 'Enable extra UAV-side debug outputs.',
},
Expand Down Expand Up @@ -85,7 +85,7 @@ const LAUNCH_PARAM_CORE_FIELDS = [
].map(key => LAUNCH_PARAM_FIELD_MAP[key]).filter(Boolean)

const LAUNCH_PARAM_TOGGLE_FIELDS = [
'uav_debug',
'verbose',
'vision_debug',
'auto_launch',
'use_camera',
Expand Down
2 changes: 1 addition & 1 deletion controls/sae_2025_ws/src/uav/launch/launch_params.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# launch_params.yaml
mission_name: straight_waypoints
uav_debug: false
verbose: false
vision_debug: false
auto_launch: true
airframe: standard_vtol # Enter a preset below or a valid airframe ID (integer), either custom or from PX4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Copy this to launch_params.yaml or set UAV_LAUNCH_PARAMS env var

mission_name: basic
uav_debug: false
verbose: false
vision_debug: false
auto_launch: true
vehicle_type: 0 # 0 for quadrotor, 1 for tiltrotor VTOL, 2 for fixed-wing, 3 for standard VTOL
Expand Down
4 changes: 2 additions & 2 deletions controls/sae_2025_ws/src/uav/launch/main.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def launch_setup(context, *args, **kwargs):
# Load launch parameters from the YAML file.
params = load_launch_parameters()
mission_name = params.get("mission_name", "basic")
uav_debug_bool = params.get("uav_debug", False)
verbose_bool = params.get("verbose", False)
vision_debug_bool = params.get("vision_debug", False)
use_camera_bool = params.get("use_camera", True)
save_vision_milliseconds = params.get("save_vision_milliseconds", 0)
Expand Down Expand Up @@ -171,7 +171,7 @@ def launch_setup(context, *args, **kwargs):
output="screen",
parameters=[
{
"debug": uav_debug_bool,
"debug": verbose_bool,
"mode_map": YAML_PATH,
"servo_only": servo_only_bool,
"camera_offsets": camera_offsets,
Expand Down