sphinx-key: configure support for long filenames

This commit is contained in:
irriden
2023-09-13 21:15:49 +00:00
parent 1d59ac2dd8
commit 0fcb5f85a8
2 changed files with 2 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
CONFIG_ESP_MAIN_TASK_STACK_SIZE=64000
CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=10000
# CONFIG_LOG_DEFAULT_LEVEL_DEBUG=y
CONFIG_FATFS_LFN_STACK=y
# Use this to set FreeRTOS kernel tick frequency to 1000 Hz (100 Hz by default).
# This allows to use 1 ms granuality for thread sleeps (10 ms by default).

View File

@@ -99,7 +99,7 @@ pub fn make_event_loop(
}
}
let kvv_store = FsKVVStore::new(&ROOT_STORE, Some(8)).0;
let kvv_store = FsKVVStore::new(&ROOT_STORE, None).0;
let fs_persister = CloudKVVStore::new(kvv_store);
let _ = fs_persister.enter();