This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

USB Driver Problem

Dear Friends, I am new to USB development in LPC2378. I have taken USB device driver from the following path

C:\Keil\ARM\Boards\Keil\MCB2300\USBCDC

But it's not installing the driver file in PC. Its showing USB Device Not Recognized and Unknown device.what should i change in that code.Is there any modifications?

Parents
  • It is caused the device is not enumerated correctly by PC .

    Unknown device is always caused by the fact that the device doesn't properly report VID and PID to windows ....and windows doesn't know what driver is loaded for the device .

    My suggestion is to check the USB snippet of reporting VID and PID. in my opinion , it is always configured in a table or array . But I am not sure if it is applied to your case .

    Good luck .

Reply
  • It is caused the device is not enumerated correctly by PC .

    Unknown device is always caused by the fact that the device doesn't properly report VID and PID to windows ....and windows doesn't know what driver is loaded for the device .

    My suggestion is to check the USB snippet of reporting VID and PID. in my opinion , it is always configured in a table or array . But I am not sure if it is applied to your case .

    Good luck .

Children