We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1537a5 commit b89ac9dCopy full SHA for b89ac9d
stmhal/moduos.c
@@ -307,7 +307,7 @@ STATIC mp_obj_t os_statvfs(mp_obj_t path_in) {
307
308
t->items[0] = MP_OBJ_NEW_SMALL_INT(fatfs->csize * 512); // f_bsize - block size
309
t->items[1] = t->items[0]; // f_frsize - fragment size
310
- t->items[2] = MP_OBJ_NEW_SMALL_INT(0); // f_blocks - total number of blocks
+ t->items[2] = MP_OBJ_NEW_SMALL_INT((fatfs->n_fatent - 2) * fatfs->csize); // f_blocks - total number of blocks
311
t->items[3] = MP_OBJ_NEW_SMALL_INT(nclst); // f_bfree - number of free blocks
312
t->items[4] = t->items[3]; // f_bavail - free blocks avail to unpriviledged users
313
t->items[5] = MP_OBJ_NEW_SMALL_INT(0); // f_files - # inodes
0 commit comments