This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Function USBMSCHFatFs_open getting hanged (never returning)

MCU: TM4C1294NCPDT

TI-RTOS: v2.01.00.03

NDK: v2.23.01.01

CCS: v6.0.1.0040

Hello,

    I have started with the TI-RTOS example fatsdusbcopy to evaluate file copy from SD card to USB Thumb Drive. After evaluating, I added Embedded Web Server into my project following httpServer example of Concerto Board (processors.wiki.ti.com/.../TI-RTOS_HTTP_Example).

   After this, when I am trying to do the SD card to USB Thumb Drive copy, the task gets stuck when the function "USBMSCHFatFs_open" is called. During the development of the embedded web server, I was blocking this sdcard to usb copy task.

Can anyone suggest some way out?

Section of the code is shown here as provided in the example also:

// Mount and register the USB Drive
USBMSCHFatFs_Params_init(&usbmschfatfsParams);
usbmschfatfsParams.servicePriority = 3;
usbmschfatfsHandle = USBMSCHFatFs_open(Board_USBMSCHFatFs0,
USB_DRIVE_NUM,
&usbmschfatfsParams);

Thanks

Regards

Soumyajit