SDCard maximum storage space
Posted: Tue Apr 26, 2016 3:46 am
Hello,
What is the maximum storage size that I can address using the onboard microSD card slot on MOD54415?
At the moment I am testing with an 8GB Card and the f_getfreespace returns the following.
Total Space On Drive: 3644850176
Free Space On Drive: 3644784640
And here is the code snippet that I am using to generate the mentioned output:
Regards,
Varban
What is the maximum storage size that I can address using the onboard microSD card slot on MOD54415?
At the moment I am testing with an 8GB Card and the f_getfreespace returns the following.
Total Space On Drive: 3644850176
Free Space On Drive: 3644784640
And here is the code snippet that I am using to generate the mentioned output:
Code: Select all
F_SPACE space;
int ret_space = f_getfreespace( f_getdrive(), &space );
if ( !ret_space )
{
/* Some Info */
iprintf("\r\nTotal Space On Drive: %lu", space.total);
iprintf("\r\nFree Space On Drive: %lu", space.free);
}
Varban