From 0dd3ba7fb9d997fe4fd02616c85d85cb899b64bb Mon Sep 17 00:00:00 2001 From: Filippo Date: Tue, 21 May 2024 18:29:06 +0200 Subject: [PATCH] feat: add steer command (DV actuation) and vehicle state (position and velocity) --- topics_tree.jsonc | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/topics_tree.jsonc b/topics_tree.jsonc index 2555ffc..b4da3aa 100644 --- a/topics_tree.jsonc +++ b/topics_tree.jsonc @@ -79,6 +79,20 @@ } } }, + "extra_tlm_data": { + "alias": "ExtraTlmData", + "description": "//extra_tlm_data", + "qos": 0, + "retain": false, + "subscribe_roles": ["0", "1", "2", "3", "4"], + "publish_roles": ["0", "1", "2", "3", "4", "128", "129"], + "sub_topics": { + "vehicle_stata": { + "alias": "ExtraTlmDataVehicleState", + "description": "Protobuffer data of vehicle state" + } + } + }, "last_update": { "alias": "DataLastUpdate", "description": "Sends the last update timestamp of the data" @@ -134,6 +148,12 @@ "description": "//command/result", "subscribe_roles": ["0", "1", "2", "3", "4", "128", "129"], "publish_roles": ["0", "1", "2", "3", "4", "128", "129"] + }, + "steer": { + "alias": "steer", + "description": "//command/steer", + "subscribe_roles": ["0", "1", "2", "3", "4", "128", "129"], + "publish_roles": ["0", "128"] } } },