diff options
| author | Damien George | 2015-10-12 00:06:25 +0100 |
|---|---|---|
| committer | Damien George | 2015-10-12 00:06:25 +0100 |
| commit | 0334058fa43a8ac7c689007f5824510c2927c5cc (patch) | |
| tree | 0abd0f6efd70aa922d0cb14a8c06c38bc957b276 /stmhal | |
| parent | 6206f431cf50741f633762dac185421e4c4f1a0d (diff) | |
Rename "Micro Python" to "MicroPython" in REPL, help, readme's and misc.
Diffstat (limited to 'stmhal')
| -rw-r--r-- | stmhal/help.c | 2 | ||||
| -rw-r--r-- | stmhal/main.c | 2 | ||||
| -rw-r--r-- | stmhal/pybcdc.inf_template | 2 | ||||
| -rw-r--r-- | stmhal/pyexec.c | 4 | ||||
| -rw-r--r-- | stmhal/usbd_desc.c | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/stmhal/help.c b/stmhal/help.c index 2a86a9785..32837972f 100644 --- a/stmhal/help.c +++ b/stmhal/help.c @@ -30,7 +30,7 @@ #include "py/obj.h" STATIC const char *help_text = -"Welcome to Micro Python!\n" +"Welcome to MicroPython!\n" "\n" "For online help please visit http://micropython.org/help/.\n" "\n" diff --git a/stmhal/main.c b/stmhal/main.c index d6ae3d61f..f814fdfc4 100644 --- a/stmhal/main.c +++ b/stmhal/main.c @@ -150,7 +150,7 @@ static const char fresh_pybcdc_inf[] = ; static const char fresh_readme_txt[] = -"This is a Micro Python board\r\n" +"This is a MicroPython board\r\n" "\r\n" "You can get started right away by writing your Python code in 'main.py'.\r\n" "\r\n" diff --git a/stmhal/pybcdc.inf_template b/stmhal/pybcdc.inf_template index 8e1803bef..85279ada3 100644 --- a/stmhal/pybcdc.inf_template +++ b/stmhal/pybcdc.inf_template @@ -87,6 +87,6 @@ ServiceBinary=%12%\usbser.sys [Strings]
MFGFILENAME="pybcdc"
-MFGNAME="Micro Python"
+MFGNAME="MicroPython"
DESCRIPTION="Pyboard USB Comm Port"
SERVICE="USB Serial Driver"
diff --git a/stmhal/pyexec.c b/stmhal/pyexec.c index a809940a8..0ab0e0ee1 100644 --- a/stmhal/pyexec.c +++ b/stmhal/pyexec.c @@ -206,7 +206,7 @@ STATIC int pyexec_friendly_repl_process_char(int c) { } else if (ret == CHAR_CTRL_B) { // reset friendly REPL mp_hal_stdout_tx_str("\r\n"); - mp_hal_stdout_tx_str("Micro Python " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; " MICROPY_HW_BOARD_NAME " with " MICROPY_HW_MCU_NAME "\r\n"); + mp_hal_stdout_tx_str("MicroPython " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; " MICROPY_HW_BOARD_NAME " with " MICROPY_HW_MCU_NAME "\r\n"); mp_hal_stdout_tx_str("Type \"help()\" for more information.\r\n"); goto input_restart; } else if (ret == CHAR_CTRL_C) { @@ -350,7 +350,7 @@ int pyexec_friendly_repl(void) { #endif friendly_repl_reset: - mp_hal_stdout_tx_str("Micro Python " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; " MICROPY_HW_BOARD_NAME " with " MICROPY_HW_MCU_NAME "\r\n"); + mp_hal_stdout_tx_str("MicroPython " MICROPY_GIT_TAG " on " MICROPY_BUILD_DATE "; " MICROPY_HW_BOARD_NAME " with " MICROPY_HW_MCU_NAME "\r\n"); mp_hal_stdout_tx_str("Type \"help()\" for more information.\r\n"); // to test ctrl-C diff --git a/stmhal/usbd_desc.c b/stmhal/usbd_desc.c index 9f2a84162..23b6f3405 100644 --- a/stmhal/usbd_desc.c +++ b/stmhal/usbd_desc.c @@ -38,7 +38,7 @@ #define USBD_VID 0xf055 #define USBD_PID 0x9800 #define USBD_LANGID_STRING 0x409 -#define USBD_MANUFACTURER_STRING "Micro Python" +#define USBD_MANUFACTURER_STRING "MicroPython" #define USBD_PRODUCT_HS_STRING "Pyboard Virtual Comm Port in HS Mode" #define USBD_SERIALNUMBER_HS_STRING "000000000010" #define USBD_PRODUCT_FS_STRING "Pyboard Virtual Comm Port in FS Mode" |
