5cc5b50694
- Move various settings to `/data/settings` and `/sdcard/settings` - Fix for `Gui` and `Statusbar` errors on startup (LVGL start) - Implement Development service settings as properties file - Rename `service::findManifestId()` to `service::findManifestById()` - Renamed various classes like `BootProperties` to `BootSettings` - Renamed `settings.properties` to `system.properties`. Code was moved to `settings` namespace/folder - `DevelopmentSettings` is now in `settings` namespace/folder (moved from service)
13 lines
162 B
C++
13 lines
162 B
C++
#pragma once
|
|
#ifdef ESP_PLATFORM
|
|
|
|
namespace tt::service::development {
|
|
|
|
void setEnableOnBoot(bool enable);
|
|
|
|
bool shouldEnableOnBoot();
|
|
|
|
}
|
|
|
|
#endif // ESP_PLATFORM
|