From d94cdbc9fd0f325d16e770232295b7de2b90c988 Mon Sep 17 00:00:00 2001 From: David Kuder Date: Sun, 16 Apr 2023 23:25:38 -0400 Subject: [PATCH] Fix config not being read --- common/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/main.c b/common/main.c index 6212cb6..bca5ea4 100644 --- a/common/main.c +++ b/common/main.c @@ -183,8 +183,8 @@ int main() { // Finish copying remaining data and code to RAM from flash dmacpy32(__ram_delayed_copy_start__, __ram_delayed_copy_end__, __ram_delayed_copy_source__); - // Sensible defaults if there is no config / fs - default_config(); + // Load the config from flash, or defaults + read_config(); core0_loop();