From 5256748b1bd53c19f1b1694fff57069f51f04847 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Thu, 6 Jan 2022 14:36:16 -0800 Subject: [PATCH] Fix up filesystem safe mode comment --- main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.c b/main.c index 391107aeb6..555e8fafb4 100644 --- a/main.c +++ b/main.c @@ -812,7 +812,8 @@ int __attribute__((used)) main(void) { // A power brownout here could make it appear as if there's // no SPI flash filesystem, and we might erase the existing one. - // Check whether CIRCUITPY is available. Don't check if it already hasn't been found. + // Check whether CIRCUITPY is available. No need to reset to get safe mode + // since we haven't run user code yet. if (!filesystem_init(safe_mode == NO_SAFE_MODE, false)) { safe_mode = NO_CIRCUITPY; }