-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate decode and encode from JSON over YAML, (#60)
* Added my format script to gitignore * Experimental handling of CAN Error Frame * Changes * Now using JSON over YAML * Handle Remote frame * Set CAN Socket to accept errors * SocketOptions now included * Updated submodule ref * Fixed ref? --------- Co-authored-by: Jack Rubacha <[email protected]>
- Loading branch information
1 parent
5304a72
commit 547a8da
Showing
3 changed files
with
18 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "Embedded-Base"] | ||
path = Embedded-Base | ||
url = https://github.com/Northeastern-Electric-Racing/Embedded-Base | ||
url = ../Embedded-Base |
Submodule Embedded-Base
updated
28 files
+2 −1 | .gitignore | |
+10 −0 | .pre-commit-config.yaml | |
+8 −0 | aliases.txt | |
+102 −55 | cangen/README.md | |
+497 −0 | cangen/RustSynthFromJSON.py | |
+4 −1 | cangen/__init__.py | |
+587 −0 | cangen/can-messages/bms.json | |
+0 −377 | cangen/can-messages/bms.yaml | |
+92 −0 | cangen/can-messages/calypso_cmd.json | |
+0 −69 | cangen/can-messages/calypso_cmd.yaml | |
+140 −0 | cangen/can-messages/charger.json | |
+0 −93 | cangen/can-messages/charger.yaml | |
+752 −0 | cangen/can-messages/dti.json | |
+0 −543 | cangen/can-messages/dti.yaml | |
+473 −0 | cangen/can-messages/mpu.json | |
+0 −318 | cangen/can-messages/mpu.yaml | |
+573 −0 | cangen/can-messages/msb.json | |
+0 −384 | cangen/can-messages/msb.yaml | |
+27 −0 | cangen/can-messages/wheel.json | |
+0 −18 | cangen/can-messages/wheel.yaml | |
+130 −0 | cangen/jsongen | |
+50 −0 | clang_restage.py | |
+115 −0 | launchpad.py | |
+65 −0 | load_alias.py | |
+62 −0 | miniterm.py | |
+183 −0 | ner_setup.py | |
+3 −0 | requirements.txt | |
+25 −0 | setup.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters