Revert "add anchor relay to feedback topics for bio,arm,core"

This reverts commit d38a84abca.
This commit is contained in:
Tristan McGinnis
2025-05-03 18:03:12 -05:00
parent d38a84abca
commit 732cb8c1b5
3 changed files with 4 additions and 156 deletions

View File

@@ -84,21 +84,6 @@ class SerialRelay(Node):
if output:
# All output over debug temporarily
self.get_logger().info(f"[MCU] {output}")
if output.startswith("can_relay_fromvic,arm"):
# Publish the message to the arm topic
msg = String()
msg.data = output
self.arm_pub.publish(msg)
elif output.startswith("can_relay_fromvic,core"):
# Publish the message to the core topic
msg = String()
msg.data = output
self.core_pub.publish(msg)
elif output.startswith("can_relay_fromvic,bio"):
# Publish the message to the bio topic
msg = String()
msg.data = output
self.bio_pub.publish(msg)
msg = String()
msg.data = output
self.debug_pub.publish(msg)