Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
d25cba4f
Commit
d25cba4f
authored
11 years ago
by
Damien George
Browse files
Options
Downloads
Plain Diff
Merge branch 'pfalcon-README-features-overview'
parents
8c1c7488
65114ca0
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+15
-4
15 additions, 4 deletions
README.md
with
15 additions
and
4 deletions
README.md
+
15
−
4
View file @
d25cba4f
...
@@ -11,12 +11,19 @@ The Micro Python project
...
@@ -11,12 +11,19 @@ The Micro Python project
This is the Micro Python project, which aims to put an implementation
This is the Micro Python project, which aims to put an implementation
of Python 3.x on a microcontroller.
of Python 3.x on a microcontroller.
WARNING: this project is in
its
early stage
s
and is subject to large
WARNING: this project is in early
beta
stage and is subject to large
changes of the code-base, including project-wide name changes and API
changes of the code-base, including project-wide name changes and API
changes.
changes.
Micro Python implements the entire Python 3.4 syntax (including exceptions,
"with", "yield from", etc.). The following core datatypes are provided:
str (no Unicode support yet), bytes, bytearray, tuple, list, dict, set,
array.array, collections.namedtuple, classes and instances. Builtin
modules include sys, time, and struct. Note that only subset of
Python 3.4 functionality implemented for the data types and modules.
See the repository www.github.com/micropython/pyboard for the Micro
See the repository www.github.com/micropython/pyboard for the Micro
Python board.
Python
board, the officially supported reference electronic circuit
board.
Major components in this repository:
Major components in this repository:
-
py/ -- the core Python implementation, including compiler and runtime.
-
py/ -- the core Python implementation, including compiler and runtime.
...
@@ -81,6 +88,10 @@ on the bottom left of the board, second row from the bottom).
...
@@ -81,6 +88,10 @@ on the bottom left of the board, second row from the bottom).
Then to flash the code via USB DFU to your device:
Then to flash the code via USB DFU to your device:
$ dfu-util -a 0 -D build/flash.dfu
$ make deploy
You will need the dfu-util program, on Arch Linux it's dfu-util-git in the
AUR. If the above does not work it may be because you don't have the
correct permissions. Try then:
You will need the dfu-util program, on Arch Linux it's dfu-util-git in the AUR.
$ sudo dfu-util -a 0 -D build-PYBV10/firmware.dfu
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment