ros2_control - rolling
Loading...
Searching...
No Matches
bicycle_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 BICYCLE_STEERING_CONTROLLER__BICYCLE_STEERING_CONTROLLER_HPP_
19#define BICYCLE_STEERING_CONTROLLER__BICYCLE_STEERING_CONTROLLER_HPP_
20
21#include <memory>
22
23#include "bicycle_steering_controller/bicycle_steering_controller_parameters.hpp"
24#include "steering_controllers_library/steering_controllers_library.hpp"
25
26namespace bicycle_steering_controller
27{
28// name constants for state interfaces
29static constexpr size_t STATE_TRACTION_WHEEL = 0;
30static constexpr size_t STATE_STEER_AXIS = 1;
31
32// name constants for command interfaces
33static constexpr size_t CMD_TRACTION_WHEEL = 0;
34static constexpr size_t CMD_STEER_WHEEL = 1;
35
36static constexpr size_t NR_STATE_ITFS = 2;
37static constexpr size_t NR_CMD_ITFS = 2;
38static constexpr size_t NR_REF_ITFS = 2;
39
41{
42public:
44
45 controller_interface::CallbackReturn configure_odometry() override;
46
47 bool update_odometry(const rclcpp::Duration & period) override;
48
49 void initialize_implementation_parameter_listener() override;
50
51protected:
52 std::shared_ptr<bicycle_steering_controller::ParamListener> bicycle_param_listener_;
53 bicycle_steering_controller::Params bicycle_params_;
54};
55} // namespace bicycle_steering_controller
56
57#endif // BICYCLE_STEERING_CONTROLLER__BICYCLE_STEERING_CONTROLLER_HPP_
Definition bicycle_steering_controller.hpp:41
Definition steering_controllers_library.hpp:41