We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6cd2a38 + 820a931 commit 589169bCopy full SHA for 589169b
rock_gazebo.orogen
@@ -70,6 +70,8 @@ task_context "ThrusterTask" do
70
71
# Thruster input port
72
input_port "thrusters_cmd", "/base/samples/Joints"
73
+ # Thruster status port
74
+ output_port "joint_samples", "/base/samples/Joints"
75
end
76
77
task_context "LaserScanTask" do
tasks/ThrusterTask.cpp
@@ -68,6 +68,8 @@ void ThrusterTask::updateHook()
68
gzmsg << "ThrusterTask: publisher has no connections. Going into exception" << endl;
69
exception(NO_TOPIC_CONNECTION);
}
+ jointsCMD.time = base::Time::now();
+ _joint_samples.write( jointsCMD );
0 commit comments