diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-12 14:06:50 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-12 14:06:50 +0100 |
commit | d6c5d398fe4c5d46073ab94a75c932899a730472 (patch) | |
tree | ea8798cc5293d1e880eacf972a8e80a55d2a83f9 | |
parent | c55721582282f282d33e35e458a2944890210ebc (diff) | |
download | micropython-d6c5d398fe4c5d46073ab94a75c932899a730472.tar.gz micropython-d6c5d398fe4c5d46073ab94a75c932899a730472.zip |
Updated README.
-rw-r--r-- | README.md | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -9,8 +9,7 @@ of Python 3.x on a microcontroller. WARNING: this project is in its early stages and is subject to large changes of the code-base, including project-wide name changes and API -changes. The software will not start to mature until March 2014 at the -earliest. +changes. See the repository www.github.com/micropython/pyboard for the Micro Python board. @@ -20,19 +19,21 @@ Major components in this repository: - unix/ -- a version of Micro Python that runs on Unix. - stmhal/ -- a version of Micro Python that runs on the Micro Python board with an STM32F405RG (using ST's new Cube HAL drivers). -- stm/ -- obsolete version of Micro Python for the Micro Python board - that uses ST's old peripheral drivers. - teensy/ -- a version of Micro Python that runs on the Teensy 3.1 (preliminary but functional). Additional components: +- bare-arm/ -- a bare minimum version of Micro Python for ARM MCUs. Start + with this if you want to port Micro Python to another microcontroller. +- stm/ -- obsolete version of Micro Python for the Micro Python board + that uses ST's old peripheral drivers. - unix-cpy/ -- a version of Micro Python that outputs bytecode (for testing). - tests/ -- test framework and test scripts. - tools/ -- various tools, including the pyboard.py module. - examples/ -- a few example Python scripts. "make" is used to build the components, or "gmake" on BSD-based systems. -You will also need bash and python (2.7 or 3.3). +You will also need bash and Python (at least 2.7 or 3.3). The Unix version ---------------- |