diff options
Diffstat (limited to 'tests/pyb/pyb_f411.py')
| -rw-r--r-- | tests/pyb/pyb_f411.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/pyb/pyb_f411.py b/tests/pyb/pyb_f411.py new file mode 100644 index 000000000..50de30282 --- /dev/null +++ b/tests/pyb/pyb_f411.py @@ -0,0 +1,9 @@ +# test pyb module on F411 MCUs + +import os, pyb + +if not 'STM32F411' in os.uname().machine: + print('SKIP') + raise SystemExit + +print(pyb.freq()) |
