File tree 1 file changed +7
-2
lines changed
bitbots_motion/bitbots_head_mover/src
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ class HeadMover {
57
57
58
58
// Declare variables
59
59
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_;
61
61
bitbots_msgs::msg::JointCommand pos_msg_;
62
62
geometry_msgs::msg::PoseWithCovarianceStamped tf_precision_pose_;
63
63
@@ -192,7 +192,7 @@ class HeadMover {
192
192
/* *
193
193
* @brief Callback used to get updates of the current joint states of the robot
194
194
*/
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; }
196
196
197
197
/* **
198
198
* @brief Handles the goal request for the look at action
@@ -714,6 +714,11 @@ class HeadMover {
714
714
// Pull the parameters from the parameter server
715
715
params_ = param_listener_->get_params ();
716
716
717
+ // Check if we received the joint states yet and if not, return
718
+ if (!current_joint_state_) {
719
+ return ;
720
+ }
721
+
717
722
// Check if the head mode changed and if so, update the search pattern
718
723
if (prev_head_mode_ != curr_head_mode) {
719
724
switch (curr_head_mode) {
You can’t perform that action at this time.
0 commit comments