summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-12-22 14:28:02 +0000
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-03-02 22:58:48 +0200
commit1febaf3ac3fa8e815b92cf0549a78599a0a69cc5 (patch)
tree7af79fdca3313ba2f8ab37be57e4311025de851f /esp8266
parentd083d7d610272a8c77be955046a88f740593c518 (diff)
downloadmicropython-1febaf3ac3fa8e815b92cf0549a78599a0a69cc5.tar.gz
micropython-1febaf3ac3fa8e815b92cf0549a78599a0a69cc5.zip
esp8266: Change "soft reboot" message to work with pyboard.py.
Diffstat (limited to 'esp8266')
-rw-r--r--esp8266/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/main.c b/esp8266/main.c
index 051ff6f6e2..4fd1189288 100644
--- a/esp8266/main.c
+++ b/esp8266/main.c
@@ -53,7 +53,7 @@ STATIC void mp_reset(void) {
}
void soft_reset(void) {
- mp_hal_stdout_tx_str("PYB: soft reset\r\n");
+ mp_hal_stdout_tx_str("PYB: soft reboot\r\n");
mp_hal_delay_us(10000); // allow UART to flush output
mp_reset();
pyexec_event_repl_init();