From 19c680ff579c5d250d8929959b392f236286bb66 Mon Sep 17 00:00:00 2001 From: Takeo Takahashi Date: Mon, 30 May 2022 11:53:01 +0900 Subject: [PATCH] test/renesas-ra: Remove unsupported feature test of Pin. Signed-off-by: Takeo Takahashi --- tests/renesas-ra/pin.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/renesas-ra/pin.py b/tests/renesas-ra/pin.py index 32bad5dfe6..61d76cca7c 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)