Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
alvinsunyixiao committed Feb 3, 2024
1 parent 237bafb commit 589430e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ff_drivers/launch/hardware_bringup.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def generate_launch_description():
# ASL optitrack IP and port
parameters=[
{
"server": "192.168.1.8",
"server": "192.168.1.2",
"port": 3883,
}
],
Expand Down
2 changes: 1 addition & 1 deletion ff_drivers/src/thruster_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class ThrusterNode : public rclcpp::Node

// listen to commands
sub_thruster_ = this->create_subscription<ThrusterCommand>(
"commands/binary_thruster",
"commands/binary_thrust",
10,
[this](const ThrusterCommand::SharedPtr msg) {ThrusterCommandCallback(msg);});
}
Expand Down

0 comments on commit 589430e

Please sign in to comment.