Page 1 of 1

FS with selfbuild usb interfaces (output)

Posted: 16 Nov 2009, 11:41
by jmibk
i've developed a usb interface that works same as udmx on usb side. so in usb specs i must write

Code: Select all

#define USB_CFG_VENDOR_NAME     'w', 'w', 'w', '.', 'a', 'n', 'y', 'm', 'a', '.', 'c', 'h'
...
#define USB_CFG_DEVICE_NAME     'u', 'D', 'M', 'X'
in subconfig.h file of the AVR USB set, that the interface works with freestyler as uDMX. Here i use a dll file named uDMX.dll located in the FS folder. How can i add a new device point in FS for my own interface?

Or, other way round...

how can i tell FS, that my interface works like uDMX, but it is no uDMX interface? When i change the to rows (see code) to another values, freestyler sends a message to the screen, that uDMX is not connected. in the uDMX.dll is no hint to fix that problem.

Re: FS with selfbuild usb interfaces (output)

Posted: 16 Nov 2009, 12:30
by remco_k
I think the only way is to replace the uDMX.dll for your own version, making sure that you have created a uDMX.dll with the very same interface as the original uDMX.dll.

Otherwise, I guess you need to ask LJ_Raph.

Re: FS with selfbuild usb interfaces (output)

Posted: 16 Nov 2009, 13:22
by jmibk
solved