Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
ARK3r committed Jun 28, 2023
1 parent b7bdcf2 commit 255178e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions example_11/bringup/launch/carlikebot.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def generate_launch_description():
DeclareLaunchArgument(
"sim",
default_value="true",
description="Whether to start controllers for simulation or real hardware."
description="Whether to start controllers for simulation or real hardware.",
)
)

Expand Down Expand Up @@ -115,7 +115,7 @@ def generate_launch_description():
# executable="spawner",
# arguments=["diffbot_base_controller", "--controller-manager", "/controller_manager"],
# )

robot_ackermann_controller_spawner = Node(
package="controller_manager",
executable="spawner",
Expand Down
3 changes: 2 additions & 1 deletion example_11/hardware/carlikebot_system.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ std::vector<hardware_interface::StateInterface> CarlikeBotSystemHardware::export
return state_interfaces;
}

std::vector<hardware_interface::CommandInterface> CarlikeBotSystemHardware::export_command_interfaces()
std::vector<hardware_interface::CommandInterface>
CarlikeBotSystemHardware::export_command_interfaces()
{
std::vector<hardware_interface::CommandInterface> command_interfaces;
for (auto i = 0u; i < info_.joints.size(); i++)
Expand Down

0 comments on commit 255178e

Please sign in to comment.