From 8d600e4d5a234c399e33953ee0559320e6c5e77e Mon Sep 17 00:00:00 2001 From: Filippo Date: Fri, 24 Nov 2023 13:10:51 +0100 Subject: [PATCH] feat: add debug signals --- networks/secondary/network.json | 31 +++++++++++++++++++++++++++++++ networks/simulator/network.json | 31 +++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) diff --git a/networks/secondary/network.json b/networks/secondary/network.json index 30865e04..b5959e6c 100644 --- a/networks/secondary/network.json +++ b/networks/secondary/network.json @@ -843,6 +843,37 @@ "force": "uint32" } } + }, + { + "name": "DEBUG_SIGNAL", + "topic": "BROADCAST", + "priority": 3, + "sending": ["TLM"], + "receiving": ["TLM"], + "description": "Debug signals", + "interval": 10, + "contents": { + "field_1": { + "type": "float32", + "range": [-1, 1], + "force": "uint16" + }, + "field_2": { + "type": "float32", + "range": [-1, 1], + "force": "uint16" + }, + "field_3": { + "type": "float32", + "range": [-1, 1], + "force": "uint16" + }, + "field_4": { + "type": "float32", + "range": [-1, 1], + "force": "uint16" + } + } } ] } diff --git a/networks/simulator/network.json b/networks/simulator/network.json index 7a77e8a4..6c068de3 100644 --- a/networks/simulator/network.json +++ b/networks/simulator/network.json @@ -202,6 +202,37 @@ "range": [-20, 200] } } + }, + { + "name": "DEBUG_SIGNAL", + "topic": "BROADCAST", + "priority": 3, + "sending": ["TLM"], + "receiving": ["TLM"], + "description": "Debug signals", + "interval": 10, + "contents": { + "field_1": { + "type": "float32", + "range": [-1, 1], + "force": "uint16" + }, + "field_2": { + "type": "float32", + "range": [-1, 1], + "force": "uint16" + }, + "field_3": { + "type": "float32", + "range": [-1, 1], + "force": "uint16" + }, + "field_4": { + "type": "float32", + "range": [-1, 1], + "force": "uint16" + } + } } ] }