-
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. --> - Make wheels turn ### 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. --> - Turning wheels ### Resolved Tickets <!-- Link any tickets that this PR resolves. --> uh --------- Co-authored-by: AmirTajaddodi <[email protected]> Co-authored-by: will-chaba <[email protected]> Co-authored-by: Amir Tajaddoditalab <[email protected]> Co-authored-by: Ashli <[email protected]> Co-authored-by: Will Chaba <[email protected]> Co-authored-by: Jiajun-Huang <[email protected]> Co-authored-by: Jiajun-Huang <[email protected]>
- Loading branch information
1 parent
d824000
commit 5c6a21a
Showing
176 changed files
with
2,392 additions
and
1,303 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
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 |
---|---|---|
|
@@ -150,4 +150,5 @@ environment/bin | |
CMakeUserPresets.json | ||
build | ||
|
||
zadig.exe | ||
zadig.exe | ||
/can_bus/**/*.plt |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,33 +1,36 @@ | ||
{ | ||
"BmsState": { | ||
"BMS_INIT_STATE": 0, | ||
"BMS_PRECHARGE_STATE": 1, | ||
"BMS_CHARGE_STATE": 2, | ||
"BMS_DRIVE_STATE": 3, | ||
"BMS_BALANCING_STATE": 4, | ||
"BMS_FAULT_STATE": 5, | ||
"BMS_INVERTER_ON_STATE": 6 | ||
}, | ||
"ImdConditionName": { | ||
"IMD_CONDITION_SHORT_CIRCUIT": 0, | ||
"IMD_CONDITION_NORMAL": 1, | ||
"IMD_CONDITION_UNDERVOLTAGE_DETECTED": 2, | ||
"IMD_CONDITION_SST": 3, | ||
"IMD_CONDITION_DEVICE_ERROR": 4, | ||
"IMD_CONDITION_GROUND_FAULT": 5, | ||
"IMD_CONDITION_INVALID": 6 | ||
}, | ||
"ImdActiveFrequency": | ||
{ | ||
"IMD_0Hz": 0, | ||
"IMD_10Hz": 1, | ||
"IMD_20Hz": 2, | ||
"IMD_30Hz": 3, | ||
"IMD_40Hz": 4, | ||
"IMD_50Hz": 5 | ||
}, | ||
"ContactorState": { | ||
"CONTACTOR_STATE_OPEN": 0, | ||
"CONTACTOR_STATE_CLOSED": 1 | ||
} | ||
"BmsState": { | ||
"BMS_INIT_STATE": 0, | ||
"BMS_PRECHARGE_STATE": 1, | ||
"BMS_CHARGE_STATE": 2, | ||
"BMS_DRIVE_STATE": 3, | ||
"BMS_BALANCING_STATE": 4, | ||
"BMS_FAULT_STATE": 5, | ||
"BMS_INVERTER_ON_STATE": 6 | ||
}, | ||
"ImdConditionName": { | ||
"IMD_CONDITION_SHORT_CIRCUIT": 0, | ||
"IMD_CONDITION_NORMAL": 1, | ||
"IMD_CONDITION_UNDERVOLTAGE_DETECTED": 2, | ||
"IMD_CONDITION_SST": 3, | ||
"IMD_CONDITION_DEVICE_ERROR": 4, | ||
"IMD_CONDITION_GROUND_FAULT": 5, | ||
"IMD_CONDITION_INVALID": 6 | ||
}, | ||
"ImdActiveFrequency": { | ||
"IMD_0Hz": 0, | ||
"IMD_10Hz": 1, | ||
"IMD_20Hz": 2, | ||
"IMD_30Hz": 3, | ||
"IMD_40Hz": 4, | ||
"IMD_50Hz": 5 | ||
}, | ||
"ContactorState": { | ||
"CONTACTOR_STATE_OPEN": 0, | ||
"CONTACTOR_STATE_CLOSED": 1 | ||
}, | ||
"CAN_AccumulatorMonitorState": { | ||
"CAN_GET_CELL_VOLTAGE_STATE": 0, | ||
"CAN_GET_CELL_TEMPERATURE_STATE": 1 | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
"BMS_Contactors", | ||
"BMS_OkStatuses", | ||
"VC_Regen", | ||
"VC_TorqueVectoring" | ||
"VC_TorqueVectoring", | ||
"Debug_CanMode" | ||
] | ||
} |
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
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.