-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First draft of new BSP interface. SIL is working,
all other BSP drivers are broken for now. Signed-off-by: Cornelius Claussen <[email protected]>
- Loading branch information
1 parent
a9fb04a
commit 3420b10
Showing
48 changed files
with
1,332 additions
and
985 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 was deleted.
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
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
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
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,27 @@ | ||
description: >- | ||
This interface defines an AC Residual Current Monitor (RCD). Actual emergency switch off is done in HW directly, | ||
but this interface allows some control and telemetry. | ||
cmds: | ||
self_test: | ||
description: >- | ||
Executes a self test of the RCD. Once finished, the var self_test_result should be published. Since | ||
the test can take quite long we do not use a synchronous return value here. | ||
reset: | ||
description: >- | ||
Resets the RCD after a trigger. May not be supported by actual hardware. | ||
result: | ||
description: 'True: Reset successfull, False: Reset failed.' | ||
type: boolean | ||
vars: | ||
rcd_current_mA: | ||
description: Residual current in mA. Note that this does not trigger anything, it is merely for reporting. | ||
type: number | ||
fault_ac: | ||
description: Indicates an AC residual current fault (informational only, hardware needs to shut down power on its own) | ||
type: 'null' | ||
fault_dc: | ||
description: Indicates an DC residual current fault (on the AC wires, informational only, hardware needs to shut down power on its own). | ||
type: 'null' | ||
self_test_result: | ||
description: Result of a triggered self test | ||
type: boolean |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.