Feedback from Dan and hopefully fix build.

This commit is contained in:
Scott Shawcroft 2019-04-17 10:48:11 -07:00
parent 8b60b20f88
commit c415d114e1
No known key found for this signature in database
GPG Key ID: FD0EDC4B6C53CA59
2 changed files with 7 additions and 6 deletions

View File

@ -72,7 +72,7 @@ before_script:
- sudo apt-get install -y python3-pip - sudo apt-get install -y python3-pip
- pip3 install --user sh click - pip3 install --user sh click
- ([[ -z "$TRAVIS_TESTS" ]] || sudo pip install --upgrade cpp-coveralls) - ([[ -z "$TRAVIS_TESTS" ]] || sudo pip install --upgrade cpp-coveralls)
- (! var_search "${TRAVIS_TESTS-}" docs || pip install --user Sphinx sphinx-rtd-theme recommonmark) - (! var_search "${TRAVIS_TESTS-}" docs || pip install --user Sphinx sphinx-rtd-theme recommonmark sphinxcontrib-svg2pdfconverter)
- (! var_search "${TRAVIS_TESTS-}" translations || pip3 install --user polib) - (! var_search "${TRAVIS_TESTS-}" translations || pip3 install --user polib)
# report some good version numbers to the build # report some good version numbers to the build

View File

@ -10,7 +10,7 @@ CircuitPython
`Branding <#branding>`__ \| `Differences from Micropython <#differences-from-micropython>`__ \| `Branding <#branding>`__ \| `Differences from Micropython <#differences-from-micropython>`__ \|
`Project Structure <#project-structure>`__ `Project Structure <#project-structure>`__
**CircuitPython** is an *beginner friendly*, open source version of Python for tiny, inexpensive **CircuitPython** is a *beginner friendly*, open source version of Python for tiny, inexpensive
computers called microcontrollers. Microcontrollers are the brains of many electronics including a computers called microcontrollers. Microcontrollers are the brains of many electronics including a
wide variety of development boards used to build hobby projects and prototypes. CircuitPython in wide variety of development boards used to build hobby projects and prototypes. CircuitPython in
electronics is one of the best ways to learn to code because it connects code to reality. Simply electronics is one of the best ways to learn to code because it connects code to reality. Simply
@ -22,9 +22,10 @@ CircuitPython features unified Python core APIs and a growing list of 150+ devic
drivers that work with it. These libraries also work on single board computers with regular drivers that work with it. These libraries also work on single board computers with regular
Python via the `Adafruit Blinka Library <https://github.com/adafruit/Adafruit_Blinka>`_. Python via the `Adafruit Blinka Library <https://github.com/adafruit/Adafruit_Blinka>`_.
CircuitPython is a beginner focused derivative of `MicroPython <https://micropython.org>`_. CircuitPython is based on `MicroPython <https://micropython.org>`_. See
CircuitPython development is sponsored by `Adafruit <https://adafruit.com>`_ and is available on `below <#differences-from-micropython>`_ for differences. CircuitPython development is sponsored by
their educational development boards. Please support both MicroPython and Adafruit. `Adafruit <https://adafruit.com>`_ and is available on their educational development boards. Please
support both MicroPython and Adafruit.
Get CircuitPython Get CircuitPython
------------------ ------------------
@ -126,7 +127,7 @@ Behavior
after the crash. A reset (the button) is needed after its fixed to after the crash. A reset (the button) is needed after its fixed to
get back into normal mode. get back into normal mode.
- RGB status LED indicating CircuitPython state, and errors through a sequence of colored flashes. - RGB status LED indicating CircuitPython state, and errors through a sequence of colored flashes.
- Re-runs ``code.y`` or other main file after file system writes over USB mass storage. (Disable with - Re-runs ``code.py`` or other main file after file system writes over USB mass storage. (Disable with
``samd.disable_autoreload()``) ``samd.disable_autoreload()``)
- Entering the REPL after the main code is finished requires a key press which enters the REPL and - Entering the REPL after the main code is finished requires a key press which enters the REPL and
disables autoreload. disables autoreload.