-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added master and slave hardware documentation * Added CRC checks in the FRAM driver * Enhanced insulation monitoring driver * Added Bender IR155 driver For a detailed list of changes, please refer to the documentation at https://iisb-foxbms.iisb.fraunhofer.de/foxbms/gen2/docs/html/v1.3.0/general/changelog.html.
- Loading branch information
Showing
1,155 changed files
with
18,887 additions
and
9,020 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 |
---|---|---|
|
@@ -47,3 +47,7 @@ __pycache__ | |
*.~$* | ||
|
||
**/foxbms-2_axivion_report.json | ||
|
||
*.exe | ||
|
||
/races.txt |
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 |
---|---|---|
@@ -0,0 +1,124 @@ | ||
{ | ||
"$id": "/properties/application", | ||
"title": "Configuration of the application", | ||
"required": [ | ||
"algorithm", | ||
"insulation-monitoring-device" | ||
], | ||
"additionalProperties": false, | ||
"properties": { | ||
"algorithm": { | ||
"$id": "/properties/application/algorithm", | ||
"title": "Configuration of the algorithm module", | ||
"required": [ | ||
"state-estimation" | ||
], | ||
"properties": { | ||
"state-estimation": { | ||
"$id": "/properties/application/algorithm/state-estimation", | ||
"title": "State estimators (must correspond to the directory name)", | ||
"required": [ | ||
"soc", | ||
"soe", | ||
"soh" | ||
], | ||
"properties": { | ||
"soc": { | ||
"$id": "/properties/application/algorithm/state-estimation/soc", | ||
"title": "State-of-Charge algorithm (must correspond to the directory name)", | ||
"type": "string", | ||
"enum": [ | ||
"counting", | ||
"debug", | ||
"none" | ||
] | ||
}, | ||
"soe": { | ||
"$id": "/properties/application/algorithm/state-estimation/soe", | ||
"title": "State-of-Energy algorithm (must correspond to the directory name)", | ||
"type": "string", | ||
"enum": [ | ||
"counting", | ||
"debug", | ||
"none" | ||
] | ||
}, | ||
"soh": { | ||
"$id": "/properties/application/algorithm/state-estimation/soh", | ||
"title": "State-of-Health algorithm (must correspond to the directory name)", | ||
"type": "string", | ||
"enum": [ | ||
"debug", | ||
"none" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"insulation-monitoring-device": { | ||
"$id": "/properties/application/insulation-monitoring-device", | ||
"title": "Configuration of the used insulation measurement device", | ||
"required": [ | ||
"manufacturer", | ||
"model" | ||
], | ||
"additionalProperties": false, | ||
"properties": { | ||
"manufacturer": { | ||
"$id": "/properties/application/insulation-monitoring-device/manufacturer", | ||
"title": "Manufacturer of the insulation monitoring device (must correspond to the directory name)", | ||
"type": "string", | ||
"enum": [ | ||
"none", | ||
"bender" | ||
] | ||
}, | ||
"model": { | ||
"$id": "/properties/application/insulation-monitoring-device/model", | ||
"title": "Name of the insulation monitoring device (must correspond to the directory name)", | ||
"type": "string" | ||
} | ||
}, | ||
"if": { | ||
"properties": { | ||
"manufacturer": { | ||
"enum": [ | ||
"none" | ||
] | ||
} | ||
} | ||
}, | ||
"then": { | ||
"properties": { | ||
"model": { | ||
"enum": [ | ||
"" | ||
] | ||
} | ||
} | ||
}, | ||
"else": { | ||
"if": { | ||
"properties": { | ||
"manufacturer": { | ||
"enum": [ | ||
"bender" | ||
] | ||
} | ||
} | ||
}, | ||
"then": { | ||
"properties": { | ||
"model": { | ||
"enum": [ | ||
"ir155", | ||
"iso165c" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.