forked from mikelikesrobots/jetbot-ros-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjetbot_system.cpp
194 lines (168 loc) · 7.03 KB
/
jetbot_system.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
// Copyright 2021 ros2_control Development Team
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// This file was last modified by Michael Hart, a.k.a Mike Likes Robots
// ([email protected]), on 2024-03-07.
#include "jetbot_control/jetbot_system.hpp"
#include <chrono>
#include <cmath>
#include <cstddef>
#include <limits>
#include <memory>
#include <vector>
#include "hardware_interface/types/hardware_interface_type_values.hpp"
#include "rclcpp/rclcpp.hpp"
using namespace jetbot_control;
hardware_interface::CallbackReturn JetBotSystemHardware::on_init(
const hardware_interface::HardwareInfo &info) {
if (hardware_interface::SystemInterface::on_init(info) !=
hardware_interface::CallbackReturn::SUCCESS) {
return hardware_interface::CallbackReturn::ERROR;
}
hw_velocities_.resize(info_.joints.size(),
std::numeric_limits<double>::quiet_NaN());
hw_commands_.resize(info_.joints.size(),
std::numeric_limits<double>::quiet_NaN());
for (auto i = 0u; i < info_.joints.size(); i++) {
auto pin_en_ =
stoi(info_.hardware_parameters["pin_enable_" + std::to_string(i)]);
auto pin_pos_ =
stoi(info_.hardware_parameters["pin_pos_" + std::to_string(i)]);
auto pin_neg_ =
stoi(info_.hardware_parameters["pin_neg_" + std::to_string(i)]);
motor_pin_sets_.emplace_back(std::make_tuple(pin_en_, pin_pos_, pin_neg_));
}
for (const hardware_interface::ComponentInfo &joint : info_.joints) {
if (joint.command_interfaces.size() != 1) {
RCLCPP_FATAL(rclcpp::get_logger("JetBotSystemHardware"),
"Joint '%s' has %zu command interfaces found. 1 expected.",
joint.name.c_str(), joint.command_interfaces.size());
return hardware_interface::CallbackReturn::ERROR;
}
if (joint.command_interfaces[0].name !=
hardware_interface::HW_IF_VELOCITY) {
RCLCPP_FATAL(
rclcpp::get_logger("JetBotSystemHardware"),
"Joint '%s' have %s command interfaces found. '%s' expected.",
joint.name.c_str(), joint.command_interfaces[0].name.c_str(),
hardware_interface::HW_IF_VELOCITY);
return hardware_interface::CallbackReturn::ERROR;
}
if (joint.state_interfaces.size() != 1) {
RCLCPP_FATAL(rclcpp::get_logger("JetBotSystemHardware"),
"Joint '%s' has %zu state interfaces. 1 expected.",
joint.name.c_str(), joint.state_interfaces.size());
return hardware_interface::CallbackReturn::ERROR;
}
if (joint.state_interfaces[0].name != hardware_interface::HW_IF_VELOCITY) {
RCLCPP_FATAL(
rclcpp::get_logger("JetBotSystemHardware"),
"Joint '%s' have '%s' as only state interface. '%s' expected.",
joint.name.c_str(), joint.state_interfaces[0].name.c_str(),
hardware_interface::HW_IF_VELOCITY);
return hardware_interface::CallbackReturn::ERROR;
}
}
// Initialize I2C and Motors
try {
i2c_device_ = std::make_shared<I2CDevice>();
for (auto i = 0u; i < info.joints.size(); i++) {
motors_.emplace_back(i2c_device_, motor_pin_sets_[i],
info.joints[i].name);
}
} catch (std::exception &ex) {
RCLCPP_FATAL(rclcpp::get_logger("JetBotSystemHardware"),
"Error while initializing I2C device or motors: '%s'",
ex.what());
return hardware_interface::CallbackReturn::ERROR;
}
return hardware_interface::CallbackReturn::SUCCESS;
}
std::vector<hardware_interface::StateInterface>
JetBotSystemHardware::export_state_interfaces() {
std::vector<hardware_interface::StateInterface> state_interfaces;
for (auto i = 0u; i < info_.joints.size(); i++) {
state_interfaces.emplace_back(hardware_interface::StateInterface(
info_.joints[i].name, hardware_interface::HW_IF_VELOCITY,
&hw_velocities_[i]));
}
return state_interfaces;
}
std::vector<hardware_interface::CommandInterface>
JetBotSystemHardware::export_command_interfaces() {
std::vector<hardware_interface::CommandInterface> command_interfaces;
for (auto i = 0u; i < info_.joints.size(); i++) {
command_interfaces.emplace_back(hardware_interface::CommandInterface(
info_.joints[i].name, hardware_interface::HW_IF_VELOCITY,
&hw_commands_[i]));
}
return command_interfaces;
}
hardware_interface::CallbackReturn JetBotSystemHardware::on_activate(
const rclcpp_lifecycle::State & /*previous_state*/) {
// set 0s as default values
for (auto i = 0u; i < hw_velocities_.size(); i++) {
if (std::isnan(hw_velocities_[i])) {
hw_velocities_[i] = 0;
hw_commands_[i] = 0;
}
}
bool success = true;
for (auto motor : motors_) {
success = success && motor.trySetVelocity(0);
}
if (!success) {
RCLCPP_ERROR(rclcpp::get_logger("JetBotSystemHardware"),
"Error setting velocity on motors while activating!");
return hardware_interface::CallbackReturn::ERROR;
}
RCLCPP_INFO(rclcpp::get_logger("JetBotSystemHardware"),
"Successfully activated!");
return hardware_interface::CallbackReturn::SUCCESS;
}
hardware_interface::CallbackReturn JetBotSystemHardware::on_deactivate(
const rclcpp_lifecycle::State & /*previous_state*/) {
bool success = true;
for (auto motor : motors_) {
success = success && motor.trySetVelocity(0);
}
if (!success) {
RCLCPP_ERROR(rclcpp::get_logger("JetBotSystemHardware"),
"Error setting velocity on motors while deactivating!");
return hardware_interface::CallbackReturn::ERROR;
}
RCLCPP_INFO(rclcpp::get_logger("JetBotSystemHardware"),
"Successfully deactivated!");
return hardware_interface::CallbackReturn::SUCCESS;
}
hardware_interface::return_type JetBotSystemHardware::read(
const rclcpp::Time & /*time*/, const rclcpp::Duration & /*period*/) {
return hardware_interface::return_type::OK;
}
hardware_interface::return_type JetBotSystemHardware::write(
const rclcpp::Time & /*time*/, const rclcpp::Duration & /*period*/) {
bool success = true;
for (auto i = 0u; i < hw_commands_.size(); i++) {
success = success && motors_[i].trySetVelocity(hw_commands_[i]);
}
if (!success) {
RCLCPP_ERROR(rclcpp::get_logger("JetBotSystemHardware"),
"Error setting velocity on motors during write step!");
return hardware_interface::return_type::ERROR;
}
return hardware_interface::return_type::OK;
}
#include "pluginlib/class_list_macros.hpp"
PLUGINLIB_EXPORT_CLASS(jetbot_control::JetBotSystemHardware,
hardware_interface::SystemInterface)