Skip to content
Snippets Groups Projects
Commit a76b31e3 authored by Daniel Müller's avatar Daniel Müller
Browse files

Added terminal output just in case that speak_blocked is hanging forever

parent 2b727e3c
No related branches found
Tags 0.1.132
No related merge requests found
......@@ -99,6 +99,7 @@ void DriveTo::targetUnreachableCallback(const homer_mapnav_msgs::TargetUnreachab
result.result = homer_mapnav_msgs::DriveToResult::FAILED_TARGET_UNREACHABLE;
if (!m_goal->suppress_speaking)
{
ROS_INFO_STREAM("Speaking: Not able to reach the target...");
homer_tts::speak_blocked("I am not able to reach the target");
}
......@@ -167,6 +168,7 @@ void DriveTo::targetReachedCallback(const std_msgs::String::ConstPtr& p)
if (!m_goal->suppress_speaking)
{
ROS_INFO_STREAM("Speaking: Reached the target...");
homer_tts::speak_blocked("I completed the drive to action");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment