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.

OMAP-L138: USB times out in Windows 10

Other Parts Discussed in Thread: OMAPL138

On previous thread 2942257, it was suggested to migrate to the SDK for a RTOS........is there any other option other than changing to a RTOS that would enable USB to work in WIndows 10?  Changning our embedded system to RTOS would not be possible at this point.  Thanks,

David Masdon

David.Masdon@L3T.com

469-777-5075

  • Hello David,

    Unfortunately, we don't have any baremetal USB examples in Processor SDK, and Starterware is in maintenance mode and has not been updated to work with Windows 10.  

    In Processor SDK, the USB examples that we have for OMAPL138 are USB device audio, USB Host Msc, and USB Device Msc, but they are RTOS based.

  • Hello David,

    I was mistaken. In Processor SDK RTOS, there are USB dev and host MSC examples that are baremetal, but they are makefile based; not CCS projects. 

    They can be built by running the following:

    cd <PDK>/packages
    
    pdksetupenv.bat

    Arm examples:

    cd <PDK>/packages/ti/drv/usb/example/usb_dev/msc/build/omapl138/arm9
    
    gmake
    
    cd <PDK>/packages/ti/drv/usb/example/usb_host/msc/build/omapl138/arm9
    
    gmake

    DSP examples:

    cd <PDK>/packages/ti/drv/usb/example/usb_dev/msc/build/omapl138/c6748
    
    gmake
    
    cd <PDK>/packages/ti/drv/usb/example/usb_host/msc/build/omapl138/c6748
    
    gmake

    I hope this helps.