CDC VCOM Driver location?

@ Dat - the code in the USB Client sample:


namespace USBClient_Example
{
    public class Program
    {
        public static void Main()
        { 
            // Start MS
            USBC_MassStorage ms = 
                   USBClientController.StandardDevices.StartMassStorage();
 
            // Assume SD card is connected
            PersistentStorage sd;
            try
            {
                sd = new PersistentStorage("SD");
            }
            catch
            {
                throw new Exception("SD card not detected");
            }
            ms.AttachLun(0, sd, " ", " ");
 
 
            // enable host access 
            ms.EnableLun(0);
 
            Thread.Sleep(Timeout.Infinite);
        }
    }
}

doesn’t work. Gus advised there was a problem with it and a fix was on the way. I haven’t seen anything on that, either… :slight_smile:

The issue was fixed in 4.2.9. Did you try it?

@ Dat - Not yet. I was only told it would be fixed, but didn’t see any sort of announcement. I suspect I just wasn’t watching the right place.

Any news on the VCOMM front?

@ jzeevi -

Sorry, we were busy couple day ago, now I am working on VCOMM.
For persistent storage problem, it was fixed in 4.2.9.0, you can try it :))

CDC VCOM has been fixed too, I got 2 beers LOL