Skip to content

Commit e86019e

Browse files
committed
Cleaning up murky separation between user configurable and automatic configured defines
1 parent 4c1b27f commit e86019e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/AIoTC_Config.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,17 @@
1919
#define ARDUINO_AIOTC_CONFIG_H_
2020

2121
/******************************************************************************
22-
* USER CONFIGURED DEFINES
22+
* USER CONFIGURABLE DEFINES
2323
******************************************************************************/
2424

2525
#ifndef OTA_STORAGE_SFU
2626
#define OTA_STORAGE_SFU (0)
2727
#endif
2828

29+
/******************************************************************************
30+
* AUTOMATICALLY CONFIGURED DEFINES
31+
******************************************************************************/
32+
2933
#if defined(ARDUINO_SAMD_MKRWIFI1010) || defined(ARDUINO_SAMD_NANO_33_IOT)
3034
#define OTA_STORAGE_SNU (1)
3135
#else
@@ -38,10 +42,6 @@
3842
#define OTA_STORAGE_SSU (0)
3943
#endif
4044

41-
/******************************************************************************
42-
* AUTOMATIC CONFIGURED DEFINES
43-
******************************************************************************/
44-
4545
#if OTA_STORAGE_SFU || OTA_STORAGE_SSU || OTA_STORAGE_SNU
4646
#define OTA_ENABLED (1)
4747
#else

0 commit comments

Comments
 (0)