diff options
author | Mike Causer <mcauser@gmail.com> | 2017-12-03 22:42:50 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-02-12 15:18:33 +1100 |
commit | 812969d615e130bef7e525553dbb7b01c27191ea (patch) | |
tree | 36ce525c5dacb1e3d2e5b8e1120be2817439384e /ports/esp8266/main.c | |
parent | d976e4f5e805ae7678dac9553846b738f80ba79e (diff) |
all: Change PYB message prefix to MPY.
Replaces "PYB: soft reboot" with "MPY: soft reboot", etc.
Having a consistent prefix across ports reduces the difference between
ports, which is a general goal. And this change won't break pyboard.py
because that tool only looks for "soft reboot".
Diffstat (limited to 'ports/esp8266/main.c')
-rw-r--r-- | ports/esp8266/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp8266/main.c b/ports/esp8266/main.c index 923e4530f..67157ce18 100644 --- a/ports/esp8266/main.c +++ b/ports/esp8266/main.c @@ -86,7 +86,7 @@ STATIC void mp_reset(void) { void soft_reset(void) { gc_sweep_all(); - mp_hal_stdout_tx_str("PYB: soft reboot\r\n"); + mp_hal_stdout_tx_str("MPY: soft reboot\r\n"); mp_hal_delay_us(10000); // allow UART to flush output mp_reset(); #if MICROPY_REPL_EVENT_DRIVEN |