tests/renesas-ra: Update pin test to support all boards.
Signed-off-by: Takeo Takahashi <takeo.takahashi.xv@renesas.com>
This commit is contained in:
parent
621bff8557
commit
2f2fd36713
|
@ -1,43 +1,15 @@
|
|||
from machine import Pin
|
||||
import os
|
||||
|
||||
n = os.uname().machine
|
||||
if "RA4W1_EK" in n:
|
||||
try_pin = "P004"
|
||||
try_s = "Pin(Pin.cpu.P004, mode=Pin.IN, pull=Pin.PULL_NONE, drive=Pin.LOW_POWER)"
|
||||
p = Pin("SW1", Pin.IN)
|
||||
if p.value() == 1:
|
||||
print("pass")
|
||||
else:
|
||||
try_pin = "P000"
|
||||
try_s = "Pin(Pin.cpu.P000, mode=Pin.IN, pull=Pin.PULL_NONE, drive=Pin.LOW_POWER)"
|
||||
print("FAIL")
|
||||
|
||||
p = Pin(try_pin, Pin.IN)
|
||||
if str(p) == try_s:
|
||||
print("OK")
|
||||
else:
|
||||
print("NG")
|
||||
print("exp: " + try_s)
|
||||
print("out: " + str(p))
|
||||
|
||||
p.init(p.IN, p.PULL_UP)
|
||||
p.init(p.IN, pull=p.PULL_UP)
|
||||
p.init(mode=p.IN, pull=p.PULL_UP)
|
||||
print(p.value())
|
||||
|
||||
p.init(p.OUT)
|
||||
p.init(p.OPEN_DRAIN)
|
||||
p.low()
|
||||
print(p.value())
|
||||
p = Pin("LED1", Pin.OUT)
|
||||
p.high()
|
||||
print(p.value())
|
||||
p.value(0)
|
||||
print(p.value())
|
||||
p.value(1)
|
||||
print(p.value())
|
||||
p.value(False)
|
||||
print(p.value())
|
||||
p.value(True)
|
||||
print(p.value())
|
||||
p.off()
|
||||
print(p.value())
|
||||
p.on()
|
||||
print(p.value())
|
||||
p.off()
|
||||
if p.value() == 1:
|
||||
print("pass")
|
||||
else:
|
||||
print("FAIL")
|
||||
p.low()
|
||||
|
|
|
@ -1,10 +1,2 @@
|
|||
OK
|
||||
1
|
||||
0
|
||||
1
|
||||
0
|
||||
1
|
||||
0
|
||||
1
|
||||
0
|
||||
1
|
||||
pass
|
||||
pass
|
||||
|
|
Loading…
Reference in New Issue