Hi Jan, sorry to be a pain but I just can't make this work. I am just trying to make your pic code firmware work with your VB6 code as is first of all ,with no mods. I am a hardware eng and my software skills are rubbish. Anyway not sure what to edit but changed the following as shown below. Is this correct?
Windows still came up and stated found new hardware and wanted to know which driver to use. I am confused as I wonder if I need the installation described in
http://msdn.microsoft.com/en-us/library/ff540283(VS.85).aspxHope you can help and thankyou again for your patience
Best Regards
Dave
/* Device Descriptor */
ROM USB_DEVICE_DESCRIPTOR device_dsc=
{
0x12, // Size of this descriptor in bytes
USB_DESCRIPTOR_DEVICE, // DEVICE descriptor type
0x0200, // USB Spec Release Number in BCD format
0x03, // Class Code default 00
0x00, // Subclass code
0x00, // Protocol code
USB_EP0_BUFF_SIZE, // Max packet size for EP0, see usb_config.h
0x0925, // Vendor ID: 0x0925 is Lakeview Research's Vendor ID
0x1456, // Product ID: 0x1456
0x0001, // Device release number in BCD format
0x01, // Manufacturer string index
0x02, // Product string index
0x00, // Device serial number string index
0x01 // Number of possible configurations
};