ros2_control - rolling
Loading...
Searching...
No Matches
ackermann_steering_controller.hpp
1// Copyright (c) 2023, Stogl Robotics Consulting UG (haftungsbeschränkt)
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15// Authors: dr. sc. Tomislav Petkovic, Dr. Ing. Denis Štogl
16//
17
18#ifndef ACKERMANN_STEERING_CONTROLLER__ACKERMANN_STEERING_CONTROLLER_HPP_
19#define ACKERMANN_STEERING_CONTROLLER__ACKERMANN_STEERING_CONTROLLER_HPP_
20
21#include <memory>
22
23#include "ackermann_steering_controller/ackermann_steering_controller_parameters.hpp"
24#include "steering_controllers_library/steering_controllers_library.hpp"
25
26namespace ackermann_steering_controller
27{
28// name constants for state interfaces
29static constexpr size_t STATE_TRACTION_RIGHT_WHEEL = 0;
30static constexpr size_t STATE_TRACTION_LEFT_WHEEL = 1;
31static constexpr size_t STATE_STEER_RIGHT_WHEEL = 2;
32static constexpr size_t STATE_STEER_LEFT_WHEEL = 3;
33
34// name constants for command interfaces
35static constexpr size_t CMD_TRACTION_RIGHT_WHEEL = 0;
36static constexpr size_t CMD_TRACTION_LEFT_WHEEL = 1;
37static constexpr size_t CMD_STEER_RIGHT_WHEEL = 2;
38static constexpr size_t CMD_STEER_LEFT_WHEEL = 3;
39
40static constexpr size_t NR_STATE_ITFS = 4;
41static constexpr size_t NR_CMD_ITFS = 4;
42static constexpr size_t NR_REF_ITFS = 2;
43
45{
46public:
48
49 controller_interface::CallbackReturn configure_odometry() override;
50
51 bool update_odometry(const rclcpp::Duration & period) override;
52
53 void initialize_implementation_parameter_listener() override;
54
55protected:
56 std::shared_ptr<ackermann_steering_controller::ParamListener> ackermann_param_listener_;
57 ackermann_steering_controller::Params ackermann_params_;
58};
59} // namespace ackermann_steering_controller
60
61#endif // ACKERMANN_STEERING_CONTROLLER__ACKERMANN_STEERING_CONTROLLER_HPP_
Definition ackermann_steering_controller.hpp:45
Definition steering_controllers_library.hpp:41