diff --git a/src/main.cpp b/src/main.cpp index 0f5cba0..ba87add 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -11,7 +11,7 @@ #include "settings-lolin_d32.h" // Contains all user-relevant settings for Wemos Lolin D32 #elif (HAL == 4) #include "settings-lolin_d32_pro.h" // Contains all user-relevant settings for Wemos Lolin D32 pro -#elif (HAL == 5) +#elif (HAL == 99) #include "settings-custom.h" // Contains all user-relevant settings custom-board #endif diff --git a/src/settings.h b/src/settings.h index 18e6003..34a6978 100644 --- a/src/settings.h +++ b/src/settings.h @@ -10,10 +10,10 @@ 2: ESP32-A1S Audiokit => settings-espa1s.h 3: Wemos Lolin D32 => settings-lolin_D32.h 4: Wemos Lolin D32 pro => settings-lolin_D32_pro.h - 5: custom => settings-custom.h + 99: custom => settings-custom.h more to come... */ - #define HAL 1 // HAL 1 = LoLin32, 2 = ESP32-A1S-AudioKit, 3 = Lolin D32, 4 = Lolin D32 pro; 5 = custom + #define HAL 1 // HAL 1 = LoLin32, 2 = ESP32-A1S-AudioKit, 3 = Lolin D32, 4 = Lolin D32 pro; 99 = custom //########################## MODULES #################################