forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests/psoc6/dut/signal: Removed unsupported signal.value() from test.
Signed-off-by: enriquezgarc <enriquezgarcia.external@infineon.com>
- Loading branch information
1 parent
b200b3f
commit a7335af
Showing
2 changed files
with
6 additions
and
19 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 |
---|---|---|
@@ -1,20 +1,12 @@ | ||
non-inverted | ||
signal is high when on(): True | ||
signal is active when on(): False | ||
signal is high when value(0): True | ||
signal is inactive when value(0): True | ||
signal is low when value(0): True | ||
signal is high when value(1): True | ||
signal is active when value(1): False | ||
signal is low when off(): True | ||
signal is inactive when off(): True | ||
|
||
|
||
inverted | ||
signal is low when on(): True | ||
signal is active when on(): True | ||
signal is high when value(0): True | ||
signal is inactive when value(0): False | ||
signal is low when value(1): True | ||
signal is active when value(1): True | ||
signal is high when off(): True | ||
signal is inactive when off(): False | ||
signal is high when off(): True |