Skip to content

Commit

Permalink
added rod elongation and update car status
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazzucchi committed Mar 6, 2024
1 parent 6e76da2 commit e046da3
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
11 changes: 10 additions & 1 deletion networks/primary/network.json
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,14 @@
"CELLBOARD_4",
"CELLBOARD_5"
]
},
"ControlsState": {
"type": "bitset",
"items": [
"SLIP",
"TORQUE_VECTORING",
"REGEN"
]
}
},
"messages": [
Expand Down Expand Up @@ -1161,7 +1169,8 @@
"contents": {
"inverter_l": "InverterStatus",
"inverter_r": "InverterStatus",
"car_status": "CarStatus"
"car_status": "CarStatus",
"controls": "ControlsState"
}
},
{
Expand Down
16 changes: 16 additions & 0 deletions networks/secondary/network.json
Original file line number Diff line number Diff line change
Expand Up @@ -844,6 +844,22 @@
}
}
},
{
"name": "ROD_ELONGATION",
"topic": "TELEMETRY",
"priority": 3,
"sending": ["ACQUISINATOR"],
"receiving": ["TLM"],
"description": "Message for the arm deformation",
"interval": 10,
"contents": {
"deformation": {
"type": "float32",
"range": [-3.0, 3.0],
"force": "uint32"
}
}
},
{
"name": "DEBUG_SIGNAL",
"topic": "BROADCAST",
Expand Down

0 comments on commit e046da3

Please sign in to comment.