summaryrefslogtreecommitdiffstats
path: root/movement/filesystem.c
diff options
context:
space:
mode:
authorJoey Castillo <joeycastillo@utexas.edu>2022-05-09 13:01:12 -0400
committerJoey Castillo <joeycastillo@utexas.edu>2022-05-09 13:05:37 -0400
commite71a70d23100c178e7300f1c0bddccfc51d99eb7 (patch)
tree8788e5454860e725dd5ba02c89c69d3834be6a2f /movement/filesystem.c
parent22b1ac0283a6aed800ea86960305284199747cdc (diff)
downloadSensor-Watch-e71a70d23100c178e7300f1c0bddccfc51d99eb7.tar.gz
Sensor-Watch-e71a70d23100c178e7300f1c0bddccfc51d99eb7.tar.bz2
Sensor-Watch-e71a70d23100c178e7300f1c0bddccfc51d99eb7.zip
add file browser to movement, remove old app
Diffstat (limited to 'movement/filesystem.c')
-rw-r--r--movement/filesystem.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/movement/filesystem.c b/movement/filesystem.c
index 2a1319fb..559bd53d 100644
--- a/movement/filesystem.c
+++ b/movement/filesystem.c
@@ -117,9 +117,11 @@ bool filesystem_init(void) {
// reformat if we can't mount the filesystem
// this should only happen on the first boot
if (err) {
+ printf("Ignore that error! Formatting filesystem...\n");
err = lfs_format(&lfs, &cfg);
if (err) return false;
err = lfs_mount(&lfs, &cfg) == LFS_ERR_OK;
+ printf("Filesystem mounted with %d bytes free.\n", filesystem_get_free_space());
}
return err == LFS_ERR_OK;