summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266/mpconfigport.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-05-02 18:54:46 +0100
committerDamien George <damien.p.george@gmail.com>2016-05-02 18:54:46 +0100
commit9215cdc7fdd698d11bea4ff6d02b46cd9a5d7b76 (patch)
tree0f884ed911239e1207de6848d8c25c38d040dc4d /esp8266/mpconfigport.h
parentb8468d12a1a35eececff6432349dc0f66b10d3dd (diff)
downloadmicropython-9215cdc7fdd698d11bea4ff6d02b46cd9a5d7b76.tar.gz
micropython-9215cdc7fdd698d11bea4ff6d02b46cd9a5d7b76.zip
esp8266: Change platform name from ESP8266 to esp8266.
The port name is lowercase, and this change is made for consistency with the docs and other ports.
Diffstat (limited to 'esp8266/mpconfigport.h')
-rw-r--r--esp8266/mpconfigport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/mpconfigport.h b/esp8266/mpconfigport.h
index 153d096f10..e2c7f57e22 100644
--- a/esp8266/mpconfigport.h
+++ b/esp8266/mpconfigport.h
@@ -152,6 +152,6 @@ extern const struct _mp_obj_module_t onewire_module;
#define MICROPY_MPHALPORT_H "esp_mphal.h"
#define MICROPY_HW_BOARD_NAME "ESP module"
#define MICROPY_HW_MCU_NAME "ESP8266"
-#define MICROPY_PY_SYS_PLATFORM "ESP8266"
+#define MICROPY_PY_SYS_PLATFORM "esp8266"
#define _assert(expr) ((expr) ? (void)0 : __assert_func(__FILE__, __LINE__, __func__, #expr))