summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorScott Shawcroft <scott.shawcroft@gmail.com>2017-10-24 22:31:16 -0700
committerScott Shawcroft <scott.shawcroft@gmail.com>2017-10-24 22:31:16 -0700
commit73c15dcf8b1b927757a595a867334b38355ddb8f (patch)
treeb1727518e47219b995611aa7e5c9da66e3df5075 /README.md
parentd43564f854a6a1202dfff550986b9343952d5d32 (diff)
parentf869d6b2e339c04469c6c9ea3fb2fabd7bbb2d8c (diff)
Merge commit 'f869d6b2e339c04469c6c9ea3fb2fabd7bbb2d8c' into nrf2_merge
This is prep for merging in the NRF5 pull request.
Diffstat (limited to 'README.md')
-rw-r--r--README.md24
1 files changed, 12 insertions, 12 deletions
diff --git a/README.md b/README.md
index 571a849d0..5d3b53b1d 100644
--- a/README.md
+++ b/README.md
@@ -177,24 +177,24 @@ CircuitPython:
Ports include the code unique to a microcontroller line and also
variations based on the board.
-* `atmel-samd` Support for SAMD21 based boards such as [Arduino Zero][],
+* `ports/atmel-samd` Support for SAMD21 based boards such as [Arduino Zero][],
[Adafruit Feather M0 Basic][], and [Adafruit Feather M0 Bluefruit LE][].
-* `bare-arm` A bare minimum version of MicroPython for ARM MCUs.
-* `cc3200` Support for boards based [CC3200](http://www.ti.com/product/CC3200)
+* `ports/bare-arm` A bare minimum version of MicroPython for ARM MCUs.
+* `ports/cc3200` Support for boards based [CC3200](http://www.ti.com/product/CC3200)
from TI such as the [WiPy 1.0](https://www.pycom.io/solutions/py-boards/wipy1/).
-* `esp8266` Support for boards based on ESP8266 WiFi modules such as the
+* `ports/esp8266` Support for boards based on ESP8266 WiFi modules such as the
[Adafruit Feather HUZZAH][].
-* `minimal` A minimal MicroPython port. Start with this if you want
+* `ports/minimal` A minimal MicroPython port. Start with this if you want
to port MicroPython to another microcontroller.
-* `pic16bit` Support for 16-bit PIC microcontrollers.
-* `qemu-arm` Support for ARM emulation through [QEMU](https://qemu.org).
-* `stmhal` Support for boards based on STM32 microcontrollers including
+* `ports/pic16bit` Support for 16-bit PIC microcontrollers.
+* `ports/qemu-arm` Support for ARM emulation through [QEMU](https://qemu.org).
+* `ports/stm32` Support for boards based on STM32 microcontrollers including
the MicroPython flagship [PyBoard](https://store.micropython.org/store/#/products/PYBv1_1).
-* `teensy` Support for the Teensy line of boards such as the
+* `ports/teensy` Support for the Teensy line of boards such as the
[Teensy 3.1](https://www.pjrc.com/teensy/teensy31.html).
-* `unix` Support for UNIX.
-* `windows` Support for [Windows](https://www.microsoft.com/en-us/windows/).
-* `zephyr` Support for [Zephyr](https://www.zephyrproject.org/), a
+* `ports/unix` Support for UNIX.
+* `ports/windows` Support for [Windows](https://www.microsoft.com/en-us/windows/).
+* `ports/zephyr` Support for [Zephyr](https://www.zephyrproject.org/), a
real-time operating system by the Linux Foundation.
CircuitPython only maintains the `atmel-samd` and `esp8266` ports. The