Skip to content

Commit

Permalink
match variable name for launchs
Browse files Browse the repository at this point in the history
  • Loading branch information
woensug-choi committed Aug 19, 2024
1 parent 9717fe4 commit 0a561f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions models/dave_robot_models/launch/upload_robot.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ def generate_launch_description():
x = LaunchConfiguration("x")
y = LaunchConfiguration("y")
z = LaunchConfiguration("z")
roll = LaunchConfiguration("roll")
pitch = LaunchConfiguration("pitch")
yaw = LaunchConfiguration("yaw")
roll = LaunchConfiguration("R")
pitch = LaunchConfiguration("P")
yaw = LaunchConfiguration("Y")
use_ned_frame = LaunchConfiguration("use_ned_frame")

args = [
Expand Down
6 changes: 3 additions & 3 deletions models/dave_sensor_models/launch/upload_sensor.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ def generate_launch_description():
x = LaunchConfiguration("x")
y = LaunchConfiguration("y")
z = LaunchConfiguration("z")
roll = LaunchConfiguration("roll")
pitch = LaunchConfiguration("pitch")
yaw = LaunchConfiguration("yaw")
roll = LaunchConfiguration("R")
pitch = LaunchConfiguration("P")
yaw = LaunchConfiguration("Y")

args = [
DeclareLaunchArgument(
Expand Down

0 comments on commit 0a561f3

Please sign in to comment.