Skip to content
Snippets Groups Projects
Commit 4ff73ad3 authored by swym's avatar swym
Browse files

fix(fatfs): correnctly initilize generation count

parent 97563e66
No related branches found
No related tags found
1 merge request!84fix(fatfs): correnctly initilize generation count
Pipeline #1894 passed
...@@ -96,6 +96,7 @@ void fatfs_init() ...@@ -96,6 +96,7 @@ void fatfs_init()
#else #else
s_globalLock = xSemaphoreCreateMutex(); s_globalLock = xSemaphoreCreateMutex();
#endif #endif
s_globalFileSystem.generationCount = 1;
fatfs_attach(); fatfs_attach();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment