drone-micropython-raw 0.1.1

Bindings to MicroPython.
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())