EFFS RAM Drive
Posted: Sat Jul 16, 2011 11:34 am
I am trying to create a RAM drive using the EFFS. I have followed the example from the fat_331.pdf document. In main, I have the following
When I run the above code, I always get the error F_ERR_TASKNOFOUND. I'm not sure why I'm seeing this after calling f_enterFS(). Any help is appreciated.
Thanks.
Code: Select all
f_enterFS();
f_init();
f_initvolume(0, f_ramdrvinit, F_AUTO_ASSIGN);
f_format(0, F_FAT12_MEDIA);
ReadWriteTest();
DisplayEffsSpaceStats();
Thanks.