You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
10 lines
148 B
Python
10 lines
148 B
Python
# test pyb module on F411 MCUs
|
|
|
|
import os, pyb
|
|
|
|
if not 'STM32F411' in os.uname().machine:
|
|
print('SKIP')
|
|
raise SystemExit
|
|
|
|
print(pyb.freq())
|