04-18-2018 02:42 AM
Hi,
I ran "ZYNQ USB CDC CLASS" code exampleattaching link for reference,
,it was fine,but when I tried inserting USB to PC,it is showing unknown device.Please help me ,thanks in advance.
04-20-2018 11:34 PM
Which OS is running on the PC? Only Linux, OSX and Windows10 natively support USB CDC.
For an older Windows you can use Zadig to install a CDC driver.
04-24-2018 05:13 AM
Hi,
I tried using zadig,it tells driver update failed.I am using windows 7,32bit.
04-24-2018 08:58 PM
Hi ,
Actually I tried the method you tried.It worked after a long time.Multiple trials it worked ,but when I powered on after a day,again the same issue is seen.Is there any temperature issue?I am using zynq 7z030 with USB3320 chip.Please help me in this .Thanks in advance.
04-25-2018 12:58 AM
I'm afraid I have never tried to make a Zynq a CDC device, only other MCU's.
04-25-2018 06:53 AM
Hi
I had a similar problem with our USB2 hardware. The BSP required me to add the following
after XUsbPsu_CfgInitialize to force the library use HIGHSPEED instead of SUPERSPEED:
XUsbPsu_SetSpeed(&UsbInstance, XUSBPSU_DCFG_HIGHSPEED); // The BSP sets SuperSpeed
Best regards
Martin
04-25-2018 10:39 PM
Thanks Martin,
But I have other issue.when I try to run mass storage device,every time I run through JTAG,each time it asks for format.How to avoid it?
04-29-2018 11:25 PM
The sample code generates an empty ram disk, that can be accessed via USB mass storage.
This disk is empty as you start the hardware and does not contain the file system pattern.
Therefore you have to format it.
If you want to avoid this, you have to make sure the ram disk is initialized in the code with the file system information during startup.
Best regards Martin
05-01-2018 08:59 PM
Thanks MArtin,
It worked...
05-02-2018 02:06 AM
Hi,
I have one more question.How can I create files in the available disk space.At present ,I have created FAT16 OS in ZYNQ.
Thanks in advance
05-02-2018 02:06 AM
05-02-2018 04:02 AM
Why is this thread suddenly about USB-MSD instead of USB-CDC?