Skip to content

Commit

Permalink
fix 9 byte message + support for cooling temps
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazzucchi committed Nov 29, 2023
1 parent 8d600e4 commit 55d715d
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
2 changes: 1 addition & 1 deletion networks/bms/network.json
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@
"interval": 1000,
"contents": {
"cellboard_id": "Cellboard",
"component_build_hash": "uint32",
"component_version": "uint16",
"canlib_build_time": "uint32"
}
}
Expand Down
2 changes: 1 addition & 1 deletion networks/primary/network.json
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@
"interval": 1000,
"contents": {
"cellboard_id": "Cellboard",
"component_build_time": "uint32",
"component_version": "uint16",
"canlib_build_time": "uint32"
}
},
Expand Down
31 changes: 31 additions & 0 deletions networks/secondary/network.json
Original file line number Diff line number Diff line change
Expand Up @@ -874,6 +874,37 @@
"force": "uint16"
}
}
},
{
"name": "COOLING TEMP",
"topic": "TELEMETRY",
"priority": 3,
"sending": ["ACQUISINATOR"],
"receiving": ["TLM"],
"description": "Cooling temperature",
"interval": 500,
"contents": {
"top_left": {
"type": "float16",
"range": [-10, 110],
"force": "uint16"
},
"bottom_left": {
"type": "float16",
"range": [-10, 110],
"force": "uint16"
},
"top_right": {
"type": "float16",
"range": [-10, 110],
"force": "uint16"
},
"bottom_right": {
"type": "float16",
"range": [-10, 110],
"force": "uint16"
}
}
}
]
}

0 comments on commit 55d715d

Please sign in to comment.