From 041c3487917a46b41a38dd94aa74db7fddfce0db Mon Sep 17 00:00:00 2001 From: Andrea Gilardoni Date: Mon, 18 Mar 2024 14:49:24 +0100 Subject: [PATCH] disabling ota on mkrgsm1400 --- src/AIoTC_Config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AIoTC_Config.h b/src/AIoTC_Config.h index 652c3717..e9c40890 100644 --- a/src/AIoTC_Config.h +++ b/src/AIoTC_Config.h @@ -65,7 +65,7 @@ #endif #ifdef ARDUINO_SAMD_MKRGSM1400 - #define OTA_STORAGE_SSU (1) + #define OTA_STORAGE_SSU (1) // OTA_STORAGE_SSU is not implemented yet in OTASamd #else #define OTA_STORAGE_SSU (0) #endif @@ -80,7 +80,7 @@ #define OTA_STORAGE_ESP (1) #endif -#if (OTA_STORAGE_SFU || OTA_STORAGE_SSU || OTA_STORAGE_SNU || OTA_STORAGE_PORTENTA_QSPI || OTA_STORAGE_ESP) +#if (OTA_STORAGE_SFU || OTA_STORAGE_SNU || OTA_STORAGE_PORTENTA_QSPI || OTA_STORAGE_ESP) #define OTA_ENABLED (1) #else #define OTA_ENABLED (0)