summaryrefslogtreecommitdiffstatshomepage
path: root/README.md
Commit message (Collapse)AuthorAge
* esp32: Add support for esp32c6.Andrew Leech2024-10-09
| | | | | | This commit adds general support for ESP32-C6 SoCs. Signed-off-by: Andrew Leech <andrew@alelec.net>
* qemu: Rename qemu-arm port to qemu.Damien George2024-09-06
| | | | | | Because this port now supports multiple architectures. Signed-off-by: Damien George <damien@micropython.org>
* all: Remove remaining qemu-riscv references.Damien George2024-09-06
| | | | Signed-off-by: Damien George <damien@micropython.org>
* README: Clean up a few bits of grammar.tharuka2024-06-26
| | | | | | | The word "Select" could be confusing in this context, eg it could be misunderstood as the `select` module. Signed-off-by: tharuka <78165134+tharuka-pavith@users.noreply.github.com>
* qemu-riscv: Add new QEMU RV32 port.Alessandro Gatti2024-06-17
| | | | | | | | | | | This adds a QEMU-based bare metal RISC-V 32 bits port. For the time being only QEMU's "virt" 32 bits board is supported, using the ilp32 ABI and the RV32IMC architecture. The top-level README and the run-tests.py files are updated for this new port. Signed-off-by: Alessandro Gatti <a.gatti@frob.it>
* teensy: Remove the teensy port.Jim Mussared2023-10-31
| | | | | | | | | | This port is largely unmaintained, has limited features (the only hardware support is for GPIO and timer, and no machine module), only supports a small number of Teensy boards, and can be confused with the mimxrt support for Teensy 4.x. Signed-off-by: Jim Mussared <jim.mussared@gmail.com> Signed-off-by: Damien George <damien@micropython.org>
* README.md: Update CI badges.Jim Mussared2023-10-06
| | | | | | | | | | | - Fix URL for the unix badge. - Add stm32 CI badge. - Add docs CI badge (linking to the documentation) - Make docs CI run on push (so we get a badge generated). This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
* README: Simplify and update, and move unix section to separate file.Jim Mussared2022-08-30
| | | | | | | | | | | | | Changes are: - Remove unix- and stm32-specific sections (move unix to its own README.md), stm32 was duplicated. - Add links to GitHub Discussions and Discord. - Update information about the project. - Add a getting started section. - Explain `make submodules`. Signed-off-by: Jim Mussared <jim.mussared@gmail.com> Signed-off-by: Damien George <damien@micropython.org>
* docs: Update links for Arm GCC toolchain.David Lechner2022-08-11
| | | | | | | | The separate A and RM toolchains have been discontinued and replaced by a single toolchain. This updates the links to the RM toolchain to the new toolchain. Signed-off-by: David Lechner <david@pybricks.com>
* README: Update link for ARM embedded toolchain to developer.arm.com.Bradley Wogsland2022-02-18
|
* github/workflows: Switch from Coveralls to Codecov.Damien George2021-06-25
| | | | | | | As discussed in #7455, Coveralls doesn't work properly anymore, it has many spurious errors with reduced coverage. Signed-off-by: Damien George <damien@micropython.org>
* README: Update badges for new GitHub Actions workflows.Damien George2020-11-30
| | | | Signed-off-by: Damien George <damien@micropython.org>
* README: Change --help option to -h to match micropython executable.Hannah Suarez/hcs02020-05-11
| | | | The behaviour was changed in 83439e38fc025bda79eec0096b8cc60379757206
* README: Fix small typo, dfeault -> default.Krsna Mahapatra2020-04-23
|
* README: Update Travis CI links to point to travis-ci.com.Damien George2020-04-22
| | | | MicroPython now build at the .com rather than the .org.
* ports: Add new make target "submodules" which inits required modules.Damien George2019-10-15
|
* mpy-cross: Do not automatically build mpy-cross, rather do it manually.Damien George2019-06-03
| | | | | Building mpy-cross automatically leads to some issues with the build process and slows it down. Instead, require it to be built manually.
* py/mkenv.mk: Change default PYTHON variable from "python" to "python3".Damien George2019-02-12
| | | | | | | | | | | | | This change makes it so that python3 is required by default to build MicroPython. Python 2 can be used by specifying make PYTHON=python2. This comes about due to a recent-ish change to PEP 394 that makes the python command more optional than before (even with Python 2 installed); see https://github.com/python/peps/commit/cd59ec03c8ff1e75089d5872520cd0706774b35b#diff-1d22f7bd72cbc900670f058b1107d426 Since the command python is no longer required to be provided by a distribution we need to use either python2 or python3 as commands. And python3 seems the obvious choice.
* README: Remove text about selecting different ports in the docs.Damien George2018-11-26
|
* README: Remove references to "make axtls", it's no longer needed.Damien George2018-11-15
| | | | | Since 0be2ea50e98f9d742b9611d0289853a11d9e7f53 axtls is automatically built as part of the usual "make" build process.
* README: Update list of ports to include esp32 and nrf.Damien George2018-07-18
|
* README: Add gcc and arm-none-eabi-newlib to list of required components.Damien George2017-10-19
| | | | | gcc is required for mpy-cross, and arm-none-eabi-newlib for ports using arm-none-eabi-gcc.
* README: Add explicit section on contributing.Paul Sokolovsky2017-10-15
| | | | | To increase visibility of Contributors' Guidelines and Code Conventions docs.
* README: Update "Dependencies" section.Paul Sokolovsky2017-09-11
| | | | | | | | Given that various ports now require submodules, rewrite the section to be more generic. Also, add git submodule update command to other sections for easy user start.
* all: Update Makefiles and others to build with new ports/ dir layout.Damien George2017-09-06
| | | | Also renames "stmhal" to "stm32" in documentation and everywhere else.
* README: Improve description of precompiled bytecode; mention mpy-cross.Damien George2017-06-26
|
* README: Mention support for bytecode and frozen bytecode.Paul Sokolovsky2017-06-24
|
* README: Change Travis & Coveralls badges to not use link references.Damien George2017-03-26
| | | | Link references don't seem to work anymore.
* README: Describe extmod/ dir.Paul Sokolovsky2017-03-25
|
* README: Add link to docs.micropython.org.Paul Sokolovsky2017-03-25
|
* README: Explicitly mention "await" support, and formatting for keywords.Paul Sokolovsky2017-03-08
|
* README: "MicroPython board" is much more commonly known as PyBoard.Paul Sokolovsky2016-10-21
|
* README: Mention _thread module availability in select ports.Paul Sokolovsky2016-10-12
|
* README: Remove issue-stats badges, the service is no longer available.Damien George2016-09-22
| | | | | | | The issue-stats service is not well maintained and likely the situation won't improve in the future. See: https://github.com/hstove/issue_stats/issues/41 https://github.com/hstove/issue_stats/issues/46
* README: "quick build": Use "make axtls" after all.Paul Sokolovsky2016-05-28
| | | | | "make deplibs" also builds libffi, and that requires GNU autotools. As we use host libffi by default, skip requiring users to build it for now.
* README: Add "make deplibs" to quick build section.Paul Sokolovsky2016-05-28
|
* README: Add explicit note that subdirs contain more READMEs.Paul Sokolovsky2016-05-14
|
* README: Mention support "async" keyword from Python 3.5.Paul Sokolovsky2016-04-29
|
* README: Promote "docs" and "tests" to "major components".Paul Sokolovsky2016-04-29
|
* README: Explicitly point to required dependencies section.Paul Sokolovsky2016-04-18
|
* stmhal: Add stmhal-specific README.md with extra details for this port.Damien George2016-03-08
|
* stmhal: Switch from dfu-util to tools/pydfu.py for deflt deploy method.Damien George2016-03-08
| | | | | | | | tools/pydfu.py is now the recommended way of deploying a DFU file. Old behaviour of dfu-util can be obtained by passing USE_PYDFU=0 when invoking make. The main README.md file has been updated to reflect this change.
* README.md: Add link to micropython.org.Damien George2016-02-17
|
* docs: Add docs about REPL paste-mode and Control-CDave Hylands2015-11-03
|
* docs: Move instructions on generating the documentation to docs/README.mdDave Hylands2015-11-03
|
* README: Fix typo in package name.Mike Bryant2015-11-04
|
* README: Adjust suggested path for generated docs.Paul Sokolovsky2015-10-31
|
* README: Document how to enable/build external dependencies.Paul Sokolovsky2015-10-21
|
* README.md: Document "Ctrl+D" shell exit.nyov2015-10-12
|
* Rename "Micro Python" to "MicroPython" in REPL, help, readme's and misc.Damien George2015-10-12
|