Guys,
It works like a charm! The only thing I had to do next to unpacking the ZIP file was running the USB wizard once.
After I installed the generated INF file the start.bat runs like a charm, no errors and all the predefined keys are working in the controls configuration menu.
I am using this in the Flight SIM Cliffs of Dover now and I will be using the same config in DCS in the P-51.
The only thing I could find is that the cowl switch and the panel light switch act on the same pre-defined key.
I looked at the main.java in the src folder and found the mistake, but don't know how to recompile all this to get the switches to work seperately.
Look at the code in the main.java (two bottom lines) are pointing to the same pre-defined key (SWITCHKEY_CLOSE_COWL)
// SWITCH PART
enum SwitchKeys
{
// Group 0
MASTER_BAT(0, 0b1, "SWITCHKEY_MASTER_BAT"),
MASTER_ALT(0, 0b10, "SWITCHKEY_MASTER_ALT"),
AVIONICS_MASTER(0, 0b100, "SWITCHKEY_AVIONICS_MASTER"),
FUEL_PUMP(0, 0b1000, "SWITCHKEY_FUEL_PUMP"),
DE_ICE(0, 0b10000, "SWITCHKEY_DE_ICE"),
PITOT_HEAT(0, 0b100000, "SWITCHKEY_PITOT_HEAT"),
CLOSE_COWL(0, 0b1000000, "SWITCHKEY_CLOSE_COWL"),
LIGHTS_PANEL(0, 0b10000000, "SWITCHKEY_CLOSE_COWL"),
// Group 1
Maybee someone knows?
56RAF Dutch