-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Changelist <!-- Give a list of the changes covered in this PR. This will help both you and the reviewer keep this PR within scope. --> - Adds commit info message to bootloader. - Generates JSONCAN for bootloader - GraphVIZ configs for CMake ### Testing Done <!-- Outline the testing that was done to demonstrate the changes are solid. This could be unit tests, integration tests, testing on the car, etc. Include relevant code snippets, screenshots, etc as needed. --> ### Resolved Tickets <!-- Link any tickets that this PR resolves. -->
- Loading branch information
Showing
13 changed files
with
511 additions
and
498 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
set(GRAPHVIZ_CUSTOM_TARGETS TRUE) |
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,56 +1,92 @@ | ||
{ | ||
"VC": { | ||
"msg_id": 1219, | ||
"cycle_time": 100, | ||
"signals": { | ||
"VC_Status": { | ||
"enum": "BootStatus" | ||
} | ||
"VC": { | ||
"msg_id": 1219, | ||
"cycle_time": 100, | ||
"signals": { | ||
"VC_Hash": { | ||
"bits": 32 | ||
}, | ||
"VC_Clean": { | ||
"bits": 1 | ||
}, | ||
"VC_Status": { | ||
"enum": "BootStatus" | ||
} | ||
} | ||
}, | ||
"BMS": { | ||
"msg_id": 1209, | ||
"cycle_time": 100, | ||
"signals": { | ||
"BMS_Hash": { | ||
"bits": 32 | ||
}, | ||
"BMS_Clean": { | ||
"bits": 1 | ||
}, | ||
"BMS_Status": { | ||
"enum": "BootStatus" | ||
} | ||
} | ||
}, | ||
"RSM": { | ||
"msg_id": 1239, | ||
"cycle_time": 100, | ||
"signals": { | ||
"RSM_Hash": { | ||
"bits": 32 | ||
}, | ||
"RSM_Clean": { | ||
"bits": 1 | ||
}, | ||
"RSM_Status": { | ||
"enum": "BootStatus" | ||
} | ||
} | ||
}, | ||
"FSM": { | ||
"msg_id": 1229, | ||
"cycle_time": 100, | ||
"signals": { | ||
"FSM_Hash": { | ||
"bits": 32 | ||
}, | ||
"FSM_Clean": { | ||
"bits": 1 | ||
}, | ||
"FSM_Status": { | ||
"enum": "BootStatus" | ||
} | ||
} | ||
}, | ||
"CRIT": { | ||
"msg_id": 1249, | ||
"cycle_time": 100, | ||
"signals": { | ||
"CRIT_Hash": { | ||
"bits": 32 | ||
}, | ||
"CRIT_Clean": { | ||
"bits": 1 | ||
}, | ||
"CRIT_Status": { | ||
"enum": "BootStatus" | ||
} | ||
} | ||
}, | ||
"H7Dev": { | ||
"msg_id": 1309, | ||
"cycle_time": 100, | ||
"signals": { | ||
"H7Dev_Hash": { | ||
"bits": 32 | ||
}, | ||
"H7Dev_Clean": { | ||
"bits": 1 | ||
}, | ||
"H7Dev_Status": { | ||
"enum": "BootStatus" | ||
} | ||
} | ||
} | ||
}, | ||
"BMS": { | ||
"msg_id": 1209, | ||
"cycle_time": 100, | ||
"signals": { | ||
"BMS_Status": { | ||
"enum": "BootStatus" | ||
} | ||
} | ||
}, | ||
"RSM": { | ||
"msg_id": 1239, | ||
"cycle_time": 100, | ||
"signals": { | ||
"RSM_Status": { | ||
"enum": "BootStatus" | ||
} | ||
} | ||
}, | ||
"FSM": { | ||
"msg_id": 1229, | ||
"cycle_time": 100, | ||
"signals": { | ||
"FSM_Status": { | ||
"enum": "BootStatus" | ||
} | ||
} | ||
}, | ||
"CRIT": { | ||
"msg_id": 1249, | ||
"cycle_time": 100, | ||
"signals": { | ||
"CRIT_Status": { | ||
"enum": "BootStatus" | ||
} | ||
} | ||
}, | ||
"H7Dev": { | ||
"msg_id": 1309, | ||
"cycle_time": 100, | ||
"signals": { | ||
"H7Dev_Status": { | ||
"enum": "BootStatus" | ||
} | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -25,6 +25,7 @@ | |
"INVR_InternalStates", | ||
"INVR_MotorPositionInfo", | ||
"INVR_Temperatures3", | ||
"RSM_Vitals" | ||
"RSM_Vitals", | ||
"Boot_VC" | ||
] | ||
} |
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
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
Oops, something went wrong.