2017-02-05 21:48:01 -05:00
|
|
|
# test pyb module on F405 MCUs
|
|
|
|
|
|
|
|
import os, pyb
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
if not "STM32F405" in os.uname().machine:
|
|
|
|
print("SKIP")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2017-02-05 21:48:01 -05:00
|
|
|
|
|
|
|
print(pyb.freq())
|
|
|
|
print(type(pyb.rng()))
|