From 116aca7697c10f1443bbd97b12d26db3cdf89283 Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Sat, 15 Nov 2025 20:13:20 +0100 Subject: [PATCH] Fix #if/else logic. Signed-off-by: Pol Henarejos --- src/fs/otp.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/fs/otp.c b/src/fs/otp.c index 69eeae7..b0b732a 100644 --- a/src/fs/otp.c +++ b/src/fs/otp.c @@ -296,8 +296,7 @@ void init_otp_files() { #endif } } -#endif // PICO_RP2350 || ESP_PLATFORM -#ifdef ENABLE_EMULATION +#else static uint8_t _otp1[32] = {0}, _otp2[32] = {0}; memset(_otp1, 0xAC, sizeof(_otp1)); memset(_otp2, 0xBE, sizeof(_otp2));