Skip to content

Commit

Permalink
utils -> filters
Browse files Browse the repository at this point in the history
  • Loading branch information
mhubii committed Dec 7, 2023
1 parent fdc3b88 commit 1fd3dce
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lbr_fri_ros2/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ add_library(lbr_fri_ros2
src/client.cpp
src/command_guard.cpp
src/command_interface.cpp
src/filters.cpp
src/state_interface.cpp
src/utils.cpp
)

target_include_directories(lbr_fri_ros2
Expand Down
2 changes: 1 addition & 1 deletion lbr_fri_ros2/include/lbr_fri_ros2/command_interface.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#include "lbr_fri_msgs/msg/lbr_command.hpp"
#include "lbr_fri_ros2/command_guard.hpp"
#include "lbr_fri_ros2/utils.hpp"
#include "lbr_fri_ros2/filters.hpp"

namespace lbr_fri_ros2 {
class CommandInterface {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef LBR_FRI_ROS2__UTILS_HPP_
#define LBR_FRI_ROS2__UTILS_HPP_
#ifndef LBR_FRI_ROS2__FILTERS_HPP_
#define LBR_FRI_ROS2__FILTERS_HPP_

#include <algorithm>
#include <array>
Expand Down Expand Up @@ -130,4 +130,4 @@ class JointPIDArray {
pid_array_t pid_controllers_; /**< PID controllers for each joint.*/
};
} // end of namespace lbr_fri_ros2
#endif // LBR_FRI_ROS2__UTILS_HPP_
#endif // LBR_FRI_ROS2__FILTERS_HPP_
2 changes: 1 addition & 1 deletion lbr_fri_ros2/include/lbr_fri_ros2/state_interface.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "friLBRClient.h"

#include "lbr_fri_msgs/msg/lbr_state.hpp"
#include "lbr_fri_ros2/utils.hpp"
#include "lbr_fri_ros2/filters.hpp"

namespace lbr_fri_ros2 {
class StateInterface {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "lbr_fri_ros2/utils.hpp"
#include "lbr_fri_ros2/filters.hpp"

namespace lbr_fri_ros2 {
ExponentialFilter::ExponentialFilter() : ExponentialFilter::ExponentialFilter(0, 0.0) {}
Expand Down

0 comments on commit 1fd3dce

Please sign in to comment.