tests/ports/stm32: Tweak tests to run on a wider set of boards.

There should be no change to these tests for existing PYBV1x and PYBD_SFx
boards.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George
2025-06-25 14:28:39 +10:00
parent 29b5c2207c
commit b680011d91
15 changed files with 96 additions and 37 deletions

View File

@@ -1,5 +1,10 @@
import sys
from pyb import ADC, Timer
if "STM32WB" in sys.implementation._machine:
print("SKIP")
raise SystemExit
adct = ADC(16) # Temperature 930 -> 20C
print(str(adct)[:19])
adcv = ADC(17) # Voltage 1500 -> 3.3V

View File

@@ -1,5 +1,13 @@
import sys
from pyb import Pin, ADCAll
if "STM32WB" in sys.implementation._machine:
pa0_adc_channel = 5
skip_temp_test = True # temperature fails on WB55
else:
pa0_adc_channel = 0
skip_temp_test = False
pins = [Pin.cpu.A0, Pin.cpu.A1, Pin.cpu.A2, Pin.cpu.A3]
# set pins to IN mode, init ADCAll, then check pins are ANALOG
@@ -12,7 +20,7 @@ for p in pins:
# set pins to IN mode, init ADCAll with mask, then check some pins are ANALOG
for p in pins:
p.init(p.IN)
adc = ADCAll(12, 0x70003)
adc = ADCAll(12, 0x70000 | 3 << pa0_adc_channel)
for p in pins:
print(p)
@@ -25,7 +33,11 @@ for c in range(19):
print(type(adc.read_channel(c)))
# call special reading functions
print(0 < adc.read_core_temp() < 100)
print(skip_temp_test or 0 < adc.read_core_temp() < 100)
print(0 < adc.read_core_vbat() < 4)
print(0 < adc.read_core_vref() < 2)
print(0 < adc.read_vref() < 4)
if sys.implementation._build == "NUCLEO_WB55":
# Restore button pin settings.
Pin("SW", Pin.IN, Pin.PULL_UP)

View File

@@ -1,7 +1,8 @@
import pyb
# test basic functionality
ext = pyb.ExtInt("X5", pyb.ExtInt.IRQ_RISING, pyb.Pin.PULL_DOWN, lambda l: print("line:", l))
pin = pyb.Pin.cpu.A4
ext = pyb.ExtInt(pin, pyb.ExtInt.IRQ_RISING, pyb.Pin.PULL_DOWN, lambda l: print("line:", l))
ext.disable()
ext.enable()
print(ext.line())

View File

@@ -1,5 +1,8 @@
import pyb
from pyb import I2C
try:
from pyb import I2C
except ImportError:
print("SKIP")
raise SystemExit
# test we can correctly create by id
for bus in (-1, 0, 1):

View File

@@ -1,15 +1,14 @@
# use accelerometer to test i2c bus
import pyb
from pyb import I2C
if not hasattr(pyb, "Accel"):
try:
from pyb import Accel, I2C
except ImportError:
print("SKIP")
raise SystemExit
accel_addr = 76
pyb.Accel() # this will init the MMA for us
Accel() # this will init the MMA for us
i2c = I2C(1, I2C.CONTROLLER, baudrate=400000)

View File

@@ -1,12 +1,13 @@
# test I2C errors, with polling (disabled irqs) and DMA
import pyb
from pyb import I2C
if not hasattr(pyb, "Accel"):
print("SKIP")
raise SystemExit
from pyb import I2C
# init accelerometer
pyb.Accel()

View File

@@ -1,3 +1,4 @@
import time
import pyb
@@ -8,7 +9,7 @@ def test_irq():
pyb.enable_irq() # by default should enable IRQ
# check that interrupts are enabled by waiting for ticks
pyb.delay(10)
time.sleep_ms(10)
# check nested disable/enable
i1 = pyb.disable_irq()
@@ -18,7 +19,7 @@ def test_irq():
pyb.enable_irq(i1)
# check that interrupts are enabled by waiting for ticks
pyb.delay(10)
time.sleep_ms(10)
test_irq()

View File

@@ -1,13 +1,13 @@
# test stm module
import stm
import pyb
import time
# test storing a full 32-bit number
# turn on then off the A15(=yellow) LED
BSRR = 0x18
stm.mem32[stm.GPIOA + BSRR] = 0x00008000
pyb.delay(100)
time.sleep_ms(100)
print(hex(stm.mem32[stm.GPIOA + stm.GPIO_ODR] & 0x00008000))
stm.mem32[stm.GPIOA + BSRR] = 0x80000000
print(hex(stm.mem32[stm.GPIOA + stm.GPIO_ODR] & 0x00008000))

View File

@@ -1,14 +1,20 @@
import sys
from pyb import Pin
p = Pin("X8", Pin.IN)
if "PYB" in sys.implementation._machine:
test_pin = "X8"
else:
test_pin = Pin.cpu.A7
p = Pin(test_pin, Pin.IN)
print(p)
print(p.name())
print(p.pin())
print(p.port())
p = Pin("X8", Pin.IN, Pin.PULL_UP)
p = Pin("X8", Pin.IN, pull=Pin.PULL_UP)
p = Pin("X8", mode=Pin.IN, pull=Pin.PULL_UP)
p = Pin(test_pin, Pin.IN, Pin.PULL_UP)
p = Pin(test_pin, Pin.IN, pull=Pin.PULL_UP)
p = Pin(test_pin, mode=Pin.IN, pull=Pin.PULL_UP)
print(p)
print(p.value())

View File

@@ -2,6 +2,10 @@
import pyb
if not hasattr(pyb, "delay"):
print("SKIP")
raise SystemExit
# test delay
pyb.delay(-1)

View File

@@ -1,13 +1,15 @@
import pyb, stm
import time, stm
from pyb import RTC
prediv_a = stm.mem32[stm.RTC + stm.RTC_PRER] >> 16
rtc = RTC()
rtc.init()
print(rtc)
# make sure that 1 second passes correctly
rtc.datetime((2014, 1, 1, 1, 0, 0, 0, 0))
pyb.delay(1002)
time.sleep_ms(1002)
print(rtc.datetime()[:7])
@@ -38,8 +40,12 @@ cal_tmp = rtc.calibration()
def set_and_print_calib(cal):
rtc.calibration(cal)
print(rtc.calibration())
if cal > 0 and prediv_a < 3:
# can't set positive calibration if prediv_a<3, so just make test pass
print(cal)
else:
rtc.calibration(cal)
print(rtc.calibration())
set_and_print_calib(512)

View File

@@ -1,4 +1,8 @@
from pyb import Servo
try:
from pyb import Servo
except ImportError:
print("SKIP")
raise SystemExit
servo = Servo(1)
print(servo)

View File

@@ -1,10 +1,15 @@
# check basic functionality of the timer class
import pyb
import sys
from pyb import Timer
tim = Timer(4)
tim = Timer(4, prescaler=100, period=200)
if "STM32WB" in sys.implementation._machine:
tim_id = 16
else:
tim_id = 4
tim = Timer(tim_id)
tim = Timer(tim_id, prescaler=100, period=200)
print(tim.prescaler())
print(tim.period())
tim.prescaler(300)

View File

@@ -1,8 +1,14 @@
# check callback feature of the timer class
import pyb
import sys
import time
from pyb import Timer
if "STM32WB" in sys.implementation._machine:
tim_extra_id = 16
else:
tim_extra_id = 4
# callback function that disables the callback when called
def cb1(t):
@@ -29,27 +35,27 @@ def cb3(x):
# create a timer with a callback, using callback(None) to stop
tim = Timer(1, freq=100, callback=cb1)
pyb.delay(5)
time.sleep_ms(5)
print("before cb1")
pyb.delay(15)
time.sleep_ms(15)
# create a timer with a callback, using deinit to stop
tim = Timer(2, freq=100, callback=cb2)
pyb.delay(5)
time.sleep_ms(5)
print("before cb2")
pyb.delay(15)
time.sleep_ms(15)
# create a timer, then set the freq, then set the callback
tim = Timer(4)
tim = Timer(tim_extra_id)
tim.init(freq=100)
tim.callback(cb1)
pyb.delay(5)
time.sleep_ms(5)
print("before cb1")
pyb.delay(15)
time.sleep_ms(15)
# test callback with a closure
tim.init(freq=100)
tim.callback(cb3(3))
pyb.delay(5)
time.sleep_ms(5)
print("before cb4")
pyb.delay(15)
time.sleep_ms(15)

View File

@@ -1,5 +1,11 @@
import sys
from pyb import UART
if "STM32WB" in sys.implementation._machine:
# UART(1) is usually connected to the REPL on these MCUs.
print("SKIP")
raise SystemExit
# test we can correctly create by id
for bus in (-1, 0, 1, 2, 5, 6):
try: