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

import os, pyb

if not 'STM32F405' in os.uname().machine:
    print('SKIP')
    raise SystemExit

print(pyb.freq())
print(type(pyb.rng()))