summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeo Takahashi <takeo.takahashi.xv@renesas.com>2022-05-30 11:53:01 +0900
committerDamien George <damien@micropython.org>2022-06-03 10:58:16 +1000
commit19c680ff579c5d250d8929959b392f236286bb66 (patch)
tree22df829935724d8987448dcf66dfec054662d73a
parentdd83f48fb28b925cfc2c5e5722f129378d30aed9 (diff)
test/renesas-ra: Remove unsupported feature test of Pin.
Signed-off-by: Takeo Takahashi <takeo.takahashi.xv@renesas.com>
-rw-r--r--tests/renesas-ra/pin.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/renesas-ra/pin.py b/tests/renesas-ra/pin.py
index 32bad5dfe..61d76cca7 100644
--- a/tests/renesas-ra/pin.py
+++ b/tests/renesas-ra/pin.py
@@ -17,14 +17,6 @@ else:
print("exp: " + try_s)
print("out: " + str(p))
-p = Pin("SW1", Pin.IN, Pin.PULL_UP)
-if p.mode() != 1:
- print("mode: NG")
-p = Pin("SW1", Pin.IN, pull=Pin.PULL_UP)
-if p.pull() != 14:
- print("pull: NG")
-p = Pin("SW1", mode=Pin.IN, pull=Pin.PULL_UP)
-
p.init(p.IN, p.PULL_UP)
p.init(p.IN, pull=p.PULL_UP)
p.init(mode=p.IN, pull=p.PULL_UP)