summaryrefslogtreecommitdiffstatshomepage
path: root/tests/ports/stm32/pyb_f411.py
blob: 58d5fa2d41216534d54847311342dca528732334 (plain) (blame)
1
2
3
4
5
6
7
8
9
# test pyb module on F411 MCUs

import os, pyb

if not "STM32F411" in os.uname().machine:
    print("SKIP")
    raise SystemExit

print(pyb.freq())