hi abhinav ,
Using the example program , i am facing issue of SD card read and getting error MFS read fault , i.e means lower level device driver has issue .
dev_handle1 = fopen("sdcard:", 0);
if ( dev_handle1 == NULL ) {
printf("\nUnable to open SD card device");
_task_block();
}
/* Install MFS: */
error_code = _io_mfs_install(dev_handle1, "a:", 0);
if ((error_code != MFS_NO_ERROR) &&
(error_code != MFS_NOT_A_DOS_DISK)) {
printf("FATAL error while initializing: \n");
_mqx_exit(1);
} else {
printf("Initialized MFS1%s\n");
}
//open filse system
file_handle=fopen("a:",NULL);
So please let me know anything you did to reolve the issue .