stmhal: On soft reset, if in raw REPL mode, don't run main.py.

This commit is contained in:
Damien George 2014-04-03 22:44:08 +01:00
parent 0e49642965
commit 57ad7aa66b
1 changed files with 1 additions and 1 deletions

View File

@ -434,7 +434,7 @@ soft_reset:
#endif
// run main script
if (reset_mode == 1) {
if (reset_mode == 1 && pyexec_mode_kind == PYEXEC_MODE_FRIENDLY_REPL) {
vstr_t *vstr = vstr_new();
vstr_add_str(vstr, "0:/");
if (pyb_config_source_dir == MP_OBJ_NULL) {