summaryrefslogtreecommitdiffstatshomepage
path: root/lib/utils
diff options
context:
space:
mode:
authorMike Causer <mcauser@gmail.com>2017-12-03 22:42:50 +1100
committerDamien George <damien.p.george@gmail.com>2019-02-12 15:18:33 +1100
commit812969d615e130bef7e525553dbb7b01c27191ea (patch)
tree36ce525c5dacb1e3d2e5b8e1120be2817439384e /lib/utils
parentd976e4f5e805ae7678dac9553846b738f80ba79e (diff)
downloadmicropython-812969d615e130bef7e525553dbb7b01c27191ea.tar.gz
micropython-812969d615e130bef7e525553dbb7b01c27191ea.zip
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 'lib/utils')
-rw-r--r--lib/utils/pyexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/pyexec.c b/lib/utils/pyexec.c
index b7174c9a13..f4e6856e50 100644
--- a/lib/utils/pyexec.c
+++ b/lib/utils/pyexec.c
@@ -450,7 +450,7 @@ friendly_repl_reset:
// do the user a favor and reenable interrupts.
if (query_irq() == IRQ_STATE_DISABLED) {
enable_irq(IRQ_STATE_ENABLED);
- mp_hal_stdout_tx_str("PYB: enabling IRQs\r\n");
+ mp_hal_stdout_tx_str("MPY: enabling IRQs\r\n");
}
}
#endif