Skip to content

Commit 0334058

Browse files
committed
Rename "Micro Python" to "MicroPython" in REPL, help, readme's and misc.
1 parent 6206f43 commit 0334058

22 files changed

Lines changed: 39 additions & 39 deletions

ACKNOWLEDGEMENTS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The Micro Python project was proudly and successfully crowdfunded
1+
The MicroPython project was proudly and successfully crowdfunded
22
via a Kickstarter campaign which ended on 13th December 2013. The
33
project was supported by 1923 very generous backers, who pledged
44
for a total of 2320 pyboards.

CODECONVENTIONS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ Names:
4141
- Use CAPS_WITH_UNDERSCORE for enums and macros.
4242
- When defining a type use underscore_case and put '_t' after it.
4343

44-
Integer types: Micro Python runs on 16, 32, and 64 bit machines, so it's
44+
Integer types: MicroPython runs on 16, 32, and 64 bit machines, so it's
4545
important to use the correctly-sized (and signed) integer types. The
4646
general guidelines are:
4747
- For most cases use mp_int_t for signed and mp_uint_t for unsigned
4848
integer values. These are guaranteed to be machine-word sized and
49-
therefore big enough to hold the value from a Micro Python small-int
49+
therefore big enough to hold the value from a MicroPython small-int
5050
object.
5151
- Use size_t for things that count bytes / sizes of objects.
5252
- You can use int/uint, but remember that they may be 16-bits wide.

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@
88
[istats-issue-img]: http://issuestats.com/github/micropython/micropython/badge/issue
99
[istats-issue-repo]: http://issuestats.com/github/micropython/micropython
1010

11-
The Micro Python project
12-
========================
11+
The MicroPython project
12+
=======================
1313
<p align="center">
1414
<img src="https://raw.githubusercontent.com/micropython/micropython/master/logo/upython-with-micro.jpg" alt="MicroPython Logo"/>
1515
</p>
1616

17-
This is the Micro Python project, which aims to put an implementation
17+
This is the MicroPython project, which aims to put an implementation
1818
of Python 3.x on microcontrollers and small embedded systems.
1919

2020
WARNING: this project is in beta stage and is subject to changes of the
2121
code-base, including project-wide name changes and API changes.
2222

23-
Micro Python implements the entire Python 3.4 syntax (including exceptions,
23+
MicroPython implements the entire Python 3.4 syntax (including exceptions,
2424
"with", "yield from", etc.). The following core datatypes are provided:
2525
str (including basic Unicode support), bytes, bytearray, tuple, list, dict,
2626
set, frozenset, array.array, collections.namedtuple, classes and instances.
@@ -33,19 +33,19 @@ Python board, the officially supported reference electronic circuit board.
3333
Major components in this repository:
3434
- py/ -- the core Python implementation, including compiler, runtime, and
3535
core library.
36-
- unix/ -- a version of Micro Python that runs on Unix.
37-
- stmhal/ -- a version of Micro Python that runs on the Micro Python board
36+
- unix/ -- a version of MicroPython that runs on Unix.
37+
- stmhal/ -- a version of MicroPython that runs on the MicroPython board
3838
with an STM32F405RG (using ST's Cube HAL drivers).
39-
- minimal/ -- a minimal Micro Python port. Start with this if you want
40-
to port Micro Python to another microcontroller.
39+
- minimal/ -- a minimal MicroPython port. Start with this if you want
40+
to port MicroPython to another microcontroller.
4141

4242
Additional components:
43-
- bare-arm/ -- a bare minimum version of Micro Python for ARM MCUs. Used
43+
- bare-arm/ -- a bare minimum version of MicroPython for ARM MCUs. Used
4444
mostly to control code size.
45-
- teensy/ -- a version of Micro Python that runs on the Teensy 3.1
45+
- teensy/ -- a version of MicroPython that runs on the Teensy 3.1
4646
(preliminary but functional).
47-
- pic16bit/ -- a version of Micro Python for 16-bit PIC microcontrollers.
48-
- cc3200/ -- a version of Micro Python that runs on the CC3200 from TI.
47+
- pic16bit/ -- a version of MicroPython for 16-bit PIC microcontrollers.
48+
- cc3200/ -- a version of MicroPython that runs on the CC3200 from TI.
4949
- esp8266/ -- an experimental port for ESP8266 WiFi modules.
5050
- tests/ -- test framework and test scripts.
5151
- tools/ -- various tools, including the pyboard.py module.

cc3200/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build Instructions for the CC3200
22

3-
Currently the CC3200 port of Micro Python builds under Linux and OSX **but not under Windows**.
3+
Currently the CC3200 port of MicroPython builds under Linux and OSX **but not under Windows**.
44

55
The tool chain required for the build can be found at <https://launchpad.net/gcc-arm-embedded>.
66

@@ -25,7 +25,7 @@ make BTARGET=bootloader BTYPE=release BOARD=LAUNCHXL
2525
```
2626

2727
## Regarding old revisions of the CC3200-LAUNCHXL
28-
First silicon (pre-release) revisions of the CC3200 had issues with the ram blocks, and Micro Python cannot run
28+
First silicon (pre-release) revisions of the CC3200 had issues with the ram blocks, and MicroPython cannot run
2929
there. Make sure to use a **v4.1 (or higer) LAUNCHXL board** when trying this port, otherwise it won't work.
3030

3131
## Flashing the CC3200

cc3200/misc/help.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#include "py/mpconfig.h"
3131
#include "py/obj.h"
3232

33-
STATIC const char help_text[] = "Welcome to Micro Python!\n"
33+
STATIC const char help_text[] = "Welcome to MicroPython!\n"
3434
"For online help please visit http://micropython.org/help/.\n"
3535
"For further help on a specific object, type help(obj)\n";
3636

cc3200/telnet/telnet.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ typedef struct {
108108
DECLARE PRIVATE DATA
109109
******************************************************************************/
110110
static telnet_data_t telnet_data;
111-
static const char* telnet_welcome_msg = "Micro Python " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; " MICROPY_HW_BOARD_NAME " with " MICROPY_HW_MCU_NAME "\r\n";
111+
static const char* telnet_welcome_msg = "MicroPython " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; " MICROPY_HW_BOARD_NAME " with " MICROPY_HW_MCU_NAME "\r\n";
112112
static const char* telnet_request_user = "Login as: ";
113113
static const char* telnet_request_password = "Password: ";
114114
static const char* telnet_invalid_loggin = "\r\nInvalid credentials, try again.\r\n";

esp8266/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Micro Python port to ESP8266
2-
============================
1+
MicroPython port to ESP8266
2+
===========================
33

44
This is a highly experimental port of MicroPython for the WiFi modules based
55
on Espressif ESP8266 chip.
@@ -31,7 +31,7 @@ The tool chain required for the build is the OpenSource ESP SDK, which can be
3131
found at <https://github.com/pfalcon/esp-open-sdk>. Clone this repository and
3232
run `make` in its directory to build and install the SDK locally.
3333

34-
Then, to build Micro Python for the ESP8266, just run:
34+
Then, to build MicroPython for the ESP8266, just run:
3535
```bash
3636
$ make
3737
```

stmhal/help.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#include "py/obj.h"
3131

3232
STATIC const char *help_text =
33-
"Welcome to Micro Python!\n"
33+
"Welcome to MicroPython!\n"
3434
"\n"
3535
"For online help please visit http://micropython.org/help/.\n"
3636
"\n"

stmhal/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ static const char fresh_pybcdc_inf[] =
150150
;
151151

152152
static const char fresh_readme_txt[] =
153-
"This is a Micro Python board\r\n"
153+
"This is a MicroPython board\r\n"
154154
"\r\n"
155155
"You can get started right away by writing your Python code in 'main.py'.\r\n"
156156
"\r\n"

stmhal/pybcdc.inf_template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,6 @@ ServiceBinary=%12%\usbser.sys
8787

8888
[Strings]
8989
MFGFILENAME="pybcdc"
90-
MFGNAME="Micro Python"
90+
MFGNAME="MicroPython"
9191
DESCRIPTION="Pyboard USB Comm Port"
9292
SERVICE="USB Serial Driver"

0 commit comments

Comments
 (0)