diff options
| author | Dan Halbert <halbert@halwitz.org> | 2018-04-08 09:52:29 -0400 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2018-04-08 09:52:29 -0400 |
| commit | 726d5e52a3094187bd2ad71fac2dad629c04bfb3 (patch) | |
| tree | c7bcfe64fbabb2f2a94b86c0049dad0b6186e566 /shared-bindings | |
| parent | a159b853400cefd51543a546ab64ebba9b999502 (diff) | |
| parent | 32048cdeeb4b3585eba66d67f31192ecfdae7de8 (diff) | |
Merge branch 'master' into 3.0_hid
Diffstat (limited to 'shared-bindings')
| -rw-r--r-- | shared-bindings/microcontroller/RunMode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/microcontroller/RunMode.c b/shared-bindings/microcontroller/RunMode.c index b27a3c090..7c3f84fca 100644 --- a/shared-bindings/microcontroller/RunMode.c +++ b/shared-bindings/microcontroller/RunMode.c @@ -76,7 +76,7 @@ STATIC void mcu_runmode_print(const mp_print_t *print, mp_obj_t self_in, mp_prin runmode = MP_QSTR_SAFE_MODE; } else if (MP_OBJ_TO_PTR(self_in) == MP_ROM_PTR(&mcu_runmode_bootloader_obj)) { - runmode = MP_QSTR_SAFE_MODE; + runmode = MP_QSTR_BOOTLOADER; } mp_printf(print, "%q.%q.%q", MP_QSTR_microcontroller, MP_QSTR_RunMode, runmode); |
