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

import os, pyb

if not 'STM32F411' in os.uname().machine:
    print('SKIP')
    import sys
    sys.exit()

print(pyb.freq())