From 34c4625dcc52aa3f8284a43e86ca7f39e11c15f1 Mon Sep 17 00:00:00 2001 From: Andrew Leech Date: Thu, 21 Mar 2024 10:23:14 +1100 Subject: [PATCH] nrf/main: Fix build of microbit when SD is enabled. Signed-off-by: Andrew Leech --- ports/nrf/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ports/nrf/main.c b/ports/nrf/main.c index dd9f232b80..07bf3e8adb 100644 --- a/ports/nrf/main.c +++ b/ports/nrf/main.c @@ -262,7 +262,7 @@ soft_reset: led_state(1, 0); #if MICROPY_VFS || MICROPY_MBFS || MICROPY_MODULE_FROZEN - ret = pyexec_file_if_exists("boot.py"); + ret_code = pyexec_file_if_exists("boot.py"); #endif #if MICROPY_HW_USB_CDC @@ -270,7 +270,7 @@ soft_reset: #endif #if MICROPY_VFS || MICROPY_MBFS || MICROPY_MODULE_FROZEN - if (pyexec_mode_kind == PYEXEC_MODE_FRIENDLY_REPL && ret != 0) { + if (pyexec_mode_kind == PYEXEC_MODE_FRIENDLY_REPL && ret_code != 0) { pyexec_file_if_exists("main.py"); } #endif