mirror of
https://github.com/SHC-ASTRA/rover-ros2.git
synced 2026-04-20 03:41:17 -05:00
fix(anchor): messages for digit would not get sent to bio node
This commit is contained in:
@@ -230,9 +230,9 @@ class Anchor(Node):
|
|||||||
"""Relay a message from the MCU to the appropriate VicCAN topic"""
|
"""Relay a message from the MCU to the appropriate VicCAN topic"""
|
||||||
if msg.mcu_name == "core":
|
if msg.mcu_name == "core":
|
||||||
self.fromvic_core_pub_.publish(msg)
|
self.fromvic_core_pub_.publish(msg)
|
||||||
elif msg.mcu_name == "arm" or msg.mcu_name == "digit":
|
if msg.mcu_name == "arm" or msg.mcu_name == "digit":
|
||||||
self.fromvic_arm_pub_.publish(msg)
|
self.fromvic_arm_pub_.publish(msg)
|
||||||
elif msg.mcu_name == "citadel" or msg.mcu_name == "digit":
|
if msg.mcu_name == "citadel" or msg.mcu_name == "digit":
|
||||||
self.fromvic_bio_pub_.publish(msg)
|
self.fromvic_bio_pub_.publish(msg)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user