Skip to content

Commit

Permalink
change qos
Browse files Browse the repository at this point in the history
  • Loading branch information
Andeshog committed Jan 29, 2025
1 parent 5bcce8f commit 908d451
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ def set_publishers_and_subscribers(self):
)
self.wrench_publisher_ = self.create_publisher(Wrench, self.wrench_topic, 10)
self.ref_publisher = self.create_publisher(
ReferenceFilter, self.guidance_topic, 10
ReferenceFilter, self.guidance_topic, best_effort_qos
)
self.software_killswitch_signal_publisher_ = self.create_publisher(
Bool, self.killswitch_topic, 10
Bool, self.killswitch_topic, best_effort_qos
)
self.software_killswitch_signal_publisher_.publish(Bool(data=True))
self.operational_mode_signal_publisher_ = self.create_publisher(
String, self.mode_topic, 10
String, self.mode_topic, best_effort_qos
)

def pose_cb(self, msg: PoseWithCovarianceStamped):
Expand Down

0 comments on commit 908d451

Please sign in to comment.