implemented basic top bar

This commit is contained in:
Ken Van Hoeylandt
2024-01-02 23:47:49 +01:00
parent e0fc80ca64
commit f6c547ad45
16 changed files with 105 additions and 16 deletions
+2 -2
View File
@@ -43,7 +43,7 @@ esp_err_t nb_partitions_init() {
esp_vfs_spiffs_conf_t assets_spiffs = {
.base_path = MOUNT_POINT_ASSETS,
.partition_label = NULL,
.max_files = 4,
.max_files = 100,
.format_if_mount_failed = false
};
@@ -54,7 +54,7 @@ esp_err_t nb_partitions_init() {
esp_vfs_spiffs_conf_t config_spiffs = {
.base_path = MOUNT_POINT_CONFIG,
.partition_label = "config",
.max_files = 2,
.max_files = 100,
.format_if_mount_failed = false
};