diff --git a/Platformio/src/gui_general_and_keys/gui_settings.cpp b/Platformio/src/gui_general_and_keys/gui_settings.cpp index cd2f50d..004e18c 100644 --- a/Platformio/src/gui_general_and_keys/gui_settings.cpp +++ b/Platformio/src/gui_general_and_keys/gui_settings.cpp @@ -1,5 +1,5 @@ #include -#include "preferences_storage.h" +#include "preferencesStorage.h" #include "hardware/tft.h" #include "hardware/sleep.h" #include "gui_general_and_keys/guiBase.h" diff --git a/Platformio/src/hardware/sleep.cpp b/Platformio/src/hardware/sleep.cpp index 32335ac..0d3bd41 100644 --- a/Platformio/src/hardware/sleep.cpp +++ b/Platformio/src/hardware/sleep.cpp @@ -8,7 +8,7 @@ #include "hardware/battery.h" #include "gui_general_and_keys/guiBase.h" #include "gui_general_and_keys/keys.h" -#include "preferences_storage.h" +#include "preferencesStorage.h" #include "commandHandler.h" #include "scenes/sceneHandler.h" diff --git a/Platformio/src/main.cpp b/Platformio/src/main.cpp index 918fc0f..00c885e 100644 --- a/Platformio/src/main.cpp +++ b/Platformio/src/main.cpp @@ -33,7 +33,7 @@ #include "scenes/scene_chromecast.h" #include "scenes/sceneHandler.h" // misc -#include "preferences_storage.h" +#include "preferencesStorage.h" #include "commandHandler.h" void setup() { diff --git a/Platformio/src/preferences_storage.cpp b/Platformio/src/preferencesStorage.cpp similarity index 97% rename from Platformio/src/preferences_storage.cpp rename to Platformio/src/preferencesStorage.cpp index 38f8b32..631cb76 100644 --- a/Platformio/src/preferences_storage.cpp +++ b/Platformio/src/preferencesStorage.cpp @@ -1,4 +1,4 @@ -#include "preferences_storage.h" +#include "preferencesStorage.h" #include "hardware/sleep.h" #include "hardware/tft.h" #include "gui_general_and_keys/guiBase.h" diff --git a/Platformio/src/preferences_storage.h b/Platformio/src/preferencesStorage.h similarity index 53% rename from Platformio/src/preferences_storage.h rename to Platformio/src/preferencesStorage.h index d4fd8fb..46d98fe 100644 --- a/Platformio/src/preferences_storage.h +++ b/Platformio/src/preferencesStorage.h @@ -1,5 +1,5 @@ -#ifndef __PREFERENCES_STORAGE_H__ -#define __PREFERENCES_STORAGE_H__ +#ifndef __PREFERENCESSTORAGE_H__ +#define __PREFERENCESSTORAGE_H__ #include @@ -8,4 +8,4 @@ extern Preferences preferences; void init_preferences(void); void save_preferences(void); -#endif /*__PREFERENCES_STORAGE_H__*/ +#endif /*__PREFERENCESSTORAGE_H__*/