Skip to content

Commit 25ae844

Browse files
committed
Rename to CircuitPython
1 parent 89f4a55 commit 25ae844

File tree

4 files changed

+18
-20
lines changed

4 files changed

+18
-20
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Adafruit MicroPython
1+
# Adafruit CircuitPython
22

3-
[![Build Status](https://travis-ci.org/adafruit/micropython.svg?branch=master)](https://travis-ci.org/adafruit/micropython)
3+
[![Build Status](https://travis-ci.org/adafruit/circuitpython.svg?branch=master)](https://travis-ci.org/adafruit/circuitpython)
44

55
This is an open source derivative of [MicroPython](http://www.micropython.org)
66
for use on educational development boards designed and sold by Adafruit
@@ -11,27 +11,27 @@ As a MicroPython derivative, this implements Python 3.x on microcontrollers such
1111
as the SAMD21 and ESP8266.
1212

1313
## Project Status
14-
This project is in beta and the APIs will change in the near future.
14+
This project is in beta. Most APIs should be stable going forward.
1515

1616
## Documentation
1717

18-
Guides and videos are available through the [Adafruit Learning System](https://learn.adafruit.com/) under the [MicroPython category](https://learn.adafruit.com/category/micropython). An API reference is also available on [Read the Docs](http://adafruit-micropython.readthedocs.io/en/latest/?).
18+
Guides and videos are available through the [Adafruit Learning System](https://learn.adafruit.com/) under the [CircuitPython category](https://learn.adafruit.com/category/circuitpython). An API reference is also available on [Read the Docs](http://circuitpython.readthedocs.io/en/latest/?).
1919

2020
## Contributing
21-
See [CONTRIBUTING.md](https://github.com/adafruit/micropython/blob/master/CONTRIBUTING.md)
21+
See [CONTRIBUTING.md](https://github.com/adafruit/circuitpython/blob/master/CONTRIBUTING.md)
2222
for full guidelines but please be aware that by contributing to this project you
2323
are agreeing to the
24-
[Code of Conduct](https://github.com/adafruit/micropython/blob/master/CODE_OF_CONDUCT.md).
24+
[Code of Conduct](https://github.com/adafruit/circuitpython/blob/master/CODE_OF_CONDUCT.md).
2525
Contributors who follow the
26-
[Code of Conduct](https://github.com/adafruit/micropython/blob/master/CODE_OF_CONDUCT.md)
26+
[Code of Conduct](https://github.com/adafruit/circuitpython/blob/master/CODE_OF_CONDUCT.md)
2727
are welcome to submit pull requests and they will be promptly reviewed by
2828
project admins.
2929

3030
## Project Structure
3131
Here is an overview of the top-level directories.
3232

3333
### Core
34-
The core of MicroPython is code shared amongst ports.
34+
The core code of MicroPython is shared amongst ports including CircuitPython:
3535
- `docs` High level user documentation in Sphinx reStructuredText format.
3636
- `drivers` External device drivers written in Python.
3737
- `examples` A few example Python scripts.
@@ -63,4 +63,4 @@ based on the board.
6363
- `windows` Support for [Windows](https://www.microsoft.com/en-us/windows/).
6464
- `zephyr` Support for [Zephyr](https://www.zephyrproject.org/), a real-time operating system by the Linux Foundation.
6565

66-
This derivative only maintains the `atmel-samd` and `esp8266` ports. The rest are here to maintain compatibility with the [MicroPython](https://github.com/micropython/micropython) parent project.
66+
CircuitPython only maintains the `atmel-samd` and `esp8266` ports. The rest are here to maintain compatibility with the [MicroPython](https://github.com/micropython/micropython) parent project.

index.rst

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Adafruit MicroPython API Reference
1+
Adafruit CircuitPython API Reference
22
========================================
33

4-
Welcome! This is the documentation for Adafruit MicroPython. It is an open
4+
Welcome! This is the documentation for Adafruit CircuitPython. It is an open
55
source derivative of `MicroPython <https://micropython.org>`_ for use on
66
educational development boards designed and sold by `Adafruit
77
<https://adafruit.com>`_ including the `Arduino Zero
@@ -10,10 +10,8 @@ educational development boards designed and sold by `Adafruit
1010
<https://www.adafruit.com/products/2821>`_ and `Adafruit Feather M0 Bluefruit LE
1111
<https://www.adafruit.com/products/2995>`_.
1212

13-
Adafruit's MicroPython port features a unified Python APIs available under
14-
`!shared-bindings` and a growing list of drivers that work with it. Currently
15-
only the Atmel SAMD21 port is supported but ESP8266 support will be added in the
16-
near future.
13+
Adafruit CircuitPython features unified Python hardware APIs available under
14+
`!shared-bindings` and a growing list of drivers that work with it.
1715

1816
`Adafruit <https://adafruit.com>`_ has many excellent tutorials available
1917
through the `Adafruit Learning System <https://learn.adafruit.com/>`_. These

lib/utils/pyexec.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Micro Python project, http://micropython.org/
2+
* This file is part of the MicroPython project, http://micropython.org/
33
*
44
* The MIT License (MIT)
55
*
@@ -245,7 +245,7 @@ STATIC int pyexec_friendly_repl_process_char(int c) {
245245
// reset friendly REPL
246246
mp_hal_stdout_tx_str("\r\n");
247247
mp_hal_stdout_tx_str("\r\n");
248-
mp_hal_stdout_tx_str("Adafruit MicroPython " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; " MICROPY_HW_BOARD_NAME " with " MICROPY_HW_MCU_NAME "\r\n");
248+
mp_hal_stdout_tx_str("Adafruit CircuitPython " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; " MICROPY_HW_BOARD_NAME " with " MICROPY_HW_MCU_NAME "\r\n");
249249
// mp_hal_stdout_tx_str("Type \"help()\" for more information.\r\n");
250250
goto input_restart;
251251
} else if (ret == CHAR_CTRL_C) {
@@ -394,7 +394,7 @@ int pyexec_friendly_repl(void) {
394394
#endif
395395

396396
friendly_repl_reset:
397-
mp_hal_stdout_tx_str("\r\nAdafruit MicroPython " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; " MICROPY_HW_BOARD_NAME " with " MICROPY_HW_MCU_NAME "\r\n");
397+
mp_hal_stdout_tx_str("\r\nAdafruit CircuitPython " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; " MICROPY_HW_BOARD_NAME " with " MICROPY_HW_MCU_NAME "\r\n");
398398
// mp_hal_stdout_tx_str("Type \"help()\" for more information.\r\n");
399399

400400
// to test ctrl-C

shared-module/help.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ extern const mp_map_t mp_builtin_module_map;
3232

3333
void shared_module_help(void) {
3434
mp_printf(&mp_plat_print,
35-
"Welcome to Adafruit MicroPython " MICROPY_GIT_TAG "!\r\n"
35+
"Welcome to Adafruit CircuitPython " MICROPY_GIT_TAG "!\r\n"
3636
"\r\n"
37-
"Please visit learn.adafruit.com/category/micropython for project guides.\r\n"
37+
"Please visit learn.adafruit.com/category/circuitpython for project guides.\r\n"
3838
"\r\n"
3939
"Built in modules:\r\n");
4040
for (int i = 0; i < mp_builtin_module_map.used; i++) {

0 commit comments

Comments
 (0)