summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Shawcroft <scott@adafruit.com>2020-01-22 11:43:43 -0800
committerGitHub <noreply@github.com>2020-01-22 11:43:43 -0800
commitb3c09e1bc06331a83c063ab66536c9aa729de210 (patch)
tree843b3fa22360e9544135a247fd09b1283135b4b1
parent154124f36929012bce3d55d7c208e04a1c12d834 (diff)
parent2614671af15c525b939a0a6a561e5dfa783a3e54 (diff)
Merge pull request #2546 from deshipu/patch-1
Update CircuitPython differences in README
-rw-r--r--README.rst13
1 files changed, 6 insertions, 7 deletions
diff --git a/README.rst b/README.rst
index 03116be88..51db41a8b 100644
--- a/README.rst
+++ b/README.rst
@@ -94,13 +94,12 @@ Differences from `MicroPython <https://github.com/micropython/micropython>`__
CircuitPython:
-- includes ports for MicroChip SAMD21 (Commonly known as M0 in Adafruit
- product names) and SAMD51 (M4).
-- supports only SAMD21, SAMD51, and nRF52840 ports.
-- tracks MicroPython's releases (not master).
-- floats (aka decimals) are enabled for all builds.
-- error messages are translated into 10+ languages.
-- does not support concurrency within Python (including interrupts and threading). Some concurrency
+- Supports native USB on all boards, allowing file editing without special tools.
+- Supports only SAMD21, SAMD51, nRF52840, CXD56, STM32F4 and i.MX RT ports.
+- Tracks MicroPython's releases (not master).
+- Floats (aka decimals) are enabled for all builds.
+- Error messages are translated into 10+ languages.
+- Does not support concurrency within Python (including interrupts and threading). Some concurrency
is achieved with native modules for tasks that require it such as audio file playback.
Behavior