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.

Configure USB1 on C6748 Starter ware Mass Storage application

Other Parts Discussed in Thread: TMS320C6748

Hi,

I am using TMS320C6748 LCDK and Starterware 1_20_03_03. I am trying to configure the Starter ware example code usb_host_msc.c to use USB1.1 instead of USB OTG. I tried to modify SYS_INT_USB0 to SYS_INT_USB1_HCINT in the code below and changing USB0HostIntHandler accordingly. I am almost sure that is not enough but I wanted to get some suggestions from anybody who was successfull in configuring USB1.1.

All I need is for it is to detect a mass storage device on USB 1.1 the same way it already does on USB OTG.

--Thank You

static void ConfigureIntUSB(void)
{
#ifdef _TMS320C6X
    
    IntDSPINTCInit();
    IntRegister(5, USB0HostIntHandler);
    IntEventMap(5, SYS_INT_USB0);
    IntEnable(5);
    IntGlobalEnable();
.....
}