Skip to content

Commit 65114ca

Browse files
committed
README: Add articles, and update doc for deploying firmware.
1 parent ad79ecd commit 65114ca

1 file changed

Lines changed: 11 additions & 7 deletions

File tree

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ WARNING: this project is in early beta stage and is subject to large
1515
changes of the code-base, including project-wide name changes and API
1616
changes.
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:
2020
str (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
2323
Python 3.4 functionality implemented for the data types and modules.
2424

2525
See 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

2828
Major 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

8989
Then 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

Comments
 (0)