@@ -15,15 +15,15 @@ WARNING: this project is in early beta stage and is subject to large
1515changes of the code-base, including project-wide name changes and API
1616changes.
1717
18- Micro Python implements entire Python 3.4 syntax (including exceptions,
19- "with", "yield from", etc.). Following core datatypes are provided:
18+ Micro Python implements the entire Python 3.4 syntax (including exceptions,
19+ "with", "yield from", etc.). The following core datatypes are provided:
2020str (no Unicode support yet), bytes, bytearray, tuple, list, dict, set,
21- array.array, collections.namedtuple, classes and instances. Builtin
22- modules include sys, time, and struct. Note that only subset of
21+ array.array, collections.namedtuple, classes and instances. Builtin
22+ modules include sys, time, and struct. Note that only subset of
2323Python 3.4 functionality implemented for the data types and modules.
2424
2525See the repository www.github.com/micropython/pyboard for the Micro
26- Python board, officially supported reference electronic circuit board.
26+ Python board, the officially supported reference electronic circuit board.
2727
2828Major components in this repository:
2929- py/ -- the core Python implementation, including compiler and runtime.
@@ -88,6 +88,10 @@ on the bottom left of the board, second row from the bottom).
8888
8989Then to flash the code via USB DFU to your device:
9090
91- $ dfu-util -a 0 -D build/flash.dfu
91+ $ make deploy
9292
93- You will need the dfu-util program, on Arch Linux it's dfu-util-git in the AUR.
93+ You will need the dfu-util program, on Arch Linux it's dfu-util-git in the
94+ AUR. If the above does not work it may be because you don't have the
95+ correct permissions. Try then:
96+
97+ $ sudo dfu-util -a 0 -D build-PYBV10/firmware.dfu
0 commit comments