We have an external USB hardware device that utilizes USB Generic HID protocols for command, control and firmware updates. Since it's generic HID, we need no specialized drivers on either a OSX or Windows based system, and currently use desktop applications for end user applications, combined with a simplified command and data transfer protocol tailored for our needs.
The device uses a simple 8 bit processor, 128kB flash, with a built in USB port. There is limited room left for USB storage device enumeration code, nor would it be appropriate to access the dice this way (throughput is critical), so we need to stay with Generic HID and our custom protocols. As t is we're already running out of code space on the device just handling the tasks it was intended for.
We want to explore a browser based application but we're running into the security/sandbox road block of browsers. I've searched through postings about plugins and extensions, but find little in the way of directly accessing USB HID devices via generic protocols.
We're looking into java, but I don't believe there is a cross platform USB java solution...Can this even be done in a browser? To make it more interesting, can it be done in all 4 browsers (IE, FF, Chrome, & Safari)? If you have an answer please provide some specifics (other than "yes I've seen it done..").