USB Connection with Microcontroller in Visual Studio C #

0

I have a microcontroller programmed to send data in Visual Studio c # through class USB Hid Net Class . I have the license to use the class already and the application has run normally on several computers. The data is passed through the USB cable.

However, when connecting the USB cable to a specific computer, it does not receive the data, it does not appear to connect to the USB cable. Can it be some configuration of the computer itself that receives the data?

Below is the connection code with PIC18F4550 .

  private void Form1_Activated(object sender, EventArgs e)
    {
        easyUSBHidNetClass.DeviceUSB_Config_VID_PID(0x4601, 0x9725); //VID and PID PLACA 1
        easyUSBHidNetClass1.DeviceUSB_Config_VID_PID(0x2920, 0x2112); //VID and PID PLACA 2
    }

Note: The Windows version is Windows 8.

    
asked by anonymous 03.09.2018 / 13:26

0 answers