Woah! Well done, I think you must be the first person to use the host
application since I added it to the public repository.
The PID value in the host application doesn't match the PID value used
in the device's descriptors, so the communication fails. Change this:
private const int DEVICE_PID = 0xFAFA;
To this:
private const int DEVICE_PID = 0x2063;
In the host application and try again, and it should see the device
correctly. I'll fix this in the SVN for the next release.
- Dean