summaryrefslogtreecommitdiffstatshomepage
path: root/tests/pyb/pyb_f411.py
blob: 50de30282376f70f1d80face706488e2438ea9ac (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())