summaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
2018-02-20Delete a bunch of docs, drivers and examples not relevant to CircuitPython.Scott Shawcroft
This fixes #345 and fixes #215.
2017-11-26atmel-samd: Added missing adalogger pins (#461)Stewart
- Added D4 and moved associated SD_CS so that they are paired within list - Added D7 and SD_CD which is the SD Card Detect pin - Added D8 and GREEN_LED - Added RED_LED associated with D13 - Added Setup information regarding arm complier packages
2017-08-29Update README (#212)Carol Willing
* Add README navigation and minor edits * Simplify links * Clean up markdown style warnings * Update links * Edit grammar and style
2017-08-01added Gemma M0 to supported boards section on readmebrentru
2017-06-29Update README with os and random info.Scott Shawcroft
2017-06-29Add link to discord chat.Scott Shawcroft
2017-05-16Update README with new boards and new differences.Scott Shawcroft
2017-04-25Update the README with new links.Scott Shawcroft
2017-04-10Split up nativeio.0.9.4Scott Shawcroft
This was done to allow greatly granularity when deciding what functionality is built into each board's build. For example, this way pulseio can be omitted to allow for something else such as touchio.
2017-01-06Add Gitter integration to Travis and add badges to the docs.Scott Shawcroft
2017-01-05Improve docs and update to CircuitPython.Scott Shawcroft
2017-01-05Rename to CircuitPythonScott Shawcroft
2016-10-24Add Travis CI badge.Scott Shawcroft
2016-10-14Rework the READMEs to clarify that this is a MicroPython derivative andScott Shawcroft
not MicroPython proper.
2016-09-22README: Remove issue-stats badges, the service is no longer available.Damien George
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
2016-05-28README: "quick build": Use "make axtls" after all.Paul Sokolovsky
"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.
2016-05-28README: Add "make deplibs" to quick build section.Paul Sokolovsky
2016-05-14README: Add explicit note that subdirs contain more READMEs.Paul Sokolovsky
2016-04-29README: Mention support "async" keyword from Python 3.5.Paul Sokolovsky
2016-04-29README: Promote "docs" and "tests" to "major components".Paul Sokolovsky
2016-04-18README: Explicitly point to required dependencies section.Paul Sokolovsky
2016-03-08stmhal: Add stmhal-specific README.md with extra details for this port.Damien George
2016-03-08stmhal: Switch from dfu-util to tools/pydfu.py for deflt deploy method.Damien George
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.
2016-02-17README.md: Add link to micropython.org.Damien George
2015-11-03docs: Add docs about REPL paste-mode and Control-CDave Hylands
2015-11-03docs: Move instructions on generating the documentation to docs/README.mdDave Hylands
2015-11-04README: Fix typo in package name.Mike Bryant
2015-10-31README: Adjust suggested path for generated docs.Paul Sokolovsky
2015-10-21README: Document how to enable/build external dependencies.Paul Sokolovsky
2015-10-12README.md: Document "Ctrl+D" shell exit.nyov
2015-10-12Rename "Micro Python" to "MicroPython" in REPL, help, readme's and misc.Damien George
2015-08-22README: Add hint about "micropython --help".Paul Sokolovsky
Also, hint about possibility to adjust heap size.
2015-08-17unix-cpy: Remove unix-cpy. It's no longer needed.Damien George
unix-cpy was originally written to get semantic equivalent with CPython without writing functional tests. When writing the initial implementation of uPy it was a long way between lexer and functional tests, so the half-way test was to make sure that the bytecode was correct. The idea was that if the uPy bytecode matched CPython 1-1 then uPy would be proper Python if the bytecodes acted correctly. And having matching bytecode meant that it was less likely to miss some deep subtlety in the Python semantics that would require an architectural change later on. But that is all history and it no longer makes sense to retain the ability to output CPython bytecode, because: 1. It outputs CPython 3.3 compatible bytecode. CPython's bytecode changes from version to version, and seems to have changed quite a bit in 3.5. There's no point in changing the bytecode output to match CPython anymore. 2. uPy and CPy do different optimisations to the bytecode which makes it harder to match. 3. The bytecode tests are not run. They were never part of Travis and are not run locally anymore. 4. The EMIT_CPYTHON option needs a lot of extra source code which adds heaps of noise, especially in compile.c. 5. Now that there is an extensive test suite (which tests functionality) there is no need to match the bytecode. Some very subtle behaviour is tested with the test suite and passing these tests is a much better way to stay Python-language compliant, rather than trying to match CPy bytecode.
2015-06-22README: Add quick information about builtin upip package manager.Paul Sokolovsky
Also, simplify dependencies info now that we no longer require GNU readline.
2015-06-18README: Mention esp8266 port.Paul Sokolovsky
2015-06-11README.md: Correct port names in the documentation build command.Daniel Campora
2015-06-10docs: Add initial draft documentation for the WiPy.Daniel Campora
This makes all common files "port-aware" using the .. only directive.
2015-04-18README.md: Add the CC3200 port to the list of additional components.Daniel Campora
2015-04-03README: Add note about pic16bit port.Damien George
2015-03-03README.md: Add issuestats badges for PRs and issues.Damien George
2015-03-01README.md: Change coveralls badge from travis-testing to master branch.Damien George
2015-03-01travis: Add automated coverage testing using coveralls.Damien George
2015-02-26README.md: Update subdir descriptions.Paul Sokolovsky
2015-02-24README.md: Update list of supported Python types.Paul Sokolovsky
2015-02-24README.md: Promote project status from "early beta" to just "beta".Paul Sokolovsky
Also, reword purpose to avoid impression that uPy supports just one microcontroller.
2014-11-17README: Update link to logo.Damien George
2014-11-15docs: Add optional sphinx_rtd_theme; add docs build instructions.evildmp
The sphinx_rtd_theme is used by ReadTheDocs to render a pretty looking documentation. If you have this theme installed locally then your locally-compiled docs will look exactly like the published documentation. Otherwise it falls back to the default theme.
2014-10-11README: Update "unix" section with more info/details.Paul Sokolovsky
2014-10-08Updating README.md to include the fact that the Unix build requires ↵Tom von Clef
pkg-config to build the FFI module.
2014-07-31README: Add USB VID/PID to dfu-util command.Damien George
This reflects how it's done in stmhal/Makefile, via deploy.