Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 1 addition & 3 deletions ateam_common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ project(ateam_common)

find_package(ament_cmake REQUIRED)
find_package(rclcpp REQUIRED)
find_package(rclcpp_components REQUIRED)
find_package(Boost REQUIRED)
find_package(Protobuf REQUIRED)
find_package(eigen3_cmake_module REQUIRED)
Expand All @@ -26,7 +25,6 @@ target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_20)
target_compile_options(${PROJECT_NAME} PRIVATE -Werror -Wall -Wextra -Wpedantic)
ament_target_dependencies(${PROJECT_NAME}
rclcpp
rclcpp_components
ateam_geometry
ateam_msgs
angles
Expand All @@ -48,7 +46,7 @@ target_include_directories(${PROJECT_NAME}
set_property(TARGET ${PROJECT_NAME} PROPERTY ENABLE_EXPORTS ON)

ament_export_targets(${PROJECT_NAME} HAS_LIBRARY_TARGET)
ament_export_dependencies(Boost Protobuf angles ateam_geometry)
ament_export_dependencies(rclcpp ateam_geometry ateam_msgs angles ssl_league_msgs Eigen3 Boost Protobuf)

install(
DIRECTORY include/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ enum class GameStage
ExtraTimeHalftime = 8,
ExtraTimePreSecondHalf = 9,
ExtraTimeSecondHalf = 10,
PenaltyBreak = 11,
Penalty = 12,
PenaltyShootoutBreak = 11,
PenaltyShootout = 12,
PostGame = 13,
Unknown = 14
};
Expand Down
2 changes: 1 addition & 1 deletion ateam_common/include/ateam_common/robot_constants.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ const Eigen::Vector3d kMaxRobotAccel = Eigen::Vector3d(3, 3, 36);
constexpr double kBallDiameter = 0.04267;
constexpr double kBallRadius = kBallDiameter / 2;

constexpr double kDefaultDribblerSpeed = 300;
constexpr double kDefaultDribblerSetpoint = 0.025;

#endif // ATEAM_COMMON__ROBOT_CONSTANTS_HPP_
1 change: 0 additions & 1 deletion ateam_common/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
<buildtool_depend>ament_cmake</buildtool_depend>

<depend>rclcpp</depend>
<depend>rclcpp_components</depend>
<depend>boost</depend>
<depend>eigen3_cmake_module</depend>
<depend>ateam_geometry</depend>
Expand Down
Loading