Skip to content

Commit f542458

Browse files
committed
Fix head mover deth if no joint states are present
1 parent 5c657ec commit f542458

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

bitbots_motion/bitbots_head_mover/src/move_head.cpp

+7-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class HeadMover {
5757

5858
// Declare variables
5959
uint head_mode_ = bitbots_msgs::msg::HeadMode::LOOK_FORWARD;
60-
std::shared_ptr<sensor_msgs::msg::JointState> current_joint_state_;
60+
std::optional<sensor_msgs::msg::JointState> current_joint_state_;
6161
bitbots_msgs::msg::JointCommand pos_msg_;
6262
geometry_msgs::msg::PoseWithCovarianceStamped tf_precision_pose_;
6363

@@ -192,7 +192,7 @@ class HeadMover {
192192
/**
193193
* @brief Callback used to get updates of the current joint states of the robot
194194
*/
195-
void joint_state_callback(const sensor_msgs::msg::JointState::SharedPtr msg) { current_joint_state_ = msg; }
195+
void joint_state_callback(const sensor_msgs::msg::JointState::SharedPtr msg) { current_joint_state_ = *msg; }
196196

197197
/***
198198
* @brief Handles the goal request for the look at action
@@ -714,6 +714,11 @@ class HeadMover {
714714
// Pull the parameters from the parameter server
715715
params_ = param_listener_->get_params();
716716

717+
// Check if we received the joint states yet and if not, return
718+
if (!current_joint_state_) {
719+
return;
720+
}
721+
717722
// Check if the head mode changed and if so, update the search pattern
718723
if (prev_head_mode_ != curr_head_mode) {
719724
switch (curr_head_mode) {

0 commit comments

Comments
 (0)