I always used the DigiX Setting before, for further testing i'll be using "Arduino Due (Native USB Port)".
Btw. I'm using the MicroUSB cable of my Kindle Touch which is working perfectly with the Kindle and also worked with the DigiX on a MacBook.
Yes, the board resets by opening a 1200 8N1 serial connection.
Using this sketch my mouse pointer jumps up and down just fine (sending keyboard key presses to the computer also works):
void setup() {
Mouse.begin();
}
void loop() {
Mouse.move(0, -40);
delay(1000);
Mouse.move(0, 40);
delay(1000);
}listComPorts.exe fails, even if not a single USB device is plugged in.
I don't know anyone with a DigiX/Due

Thank you so much for still trying to help me

i hope we can find the problem

One more thing i noticed, with this sketch
int led = 13;
void setup() {
pinMode(led, OUTPUT);
SerialUSB.begin(9600);
}
void loop() {
digitalWrite(led, HIGH);
SerialUSB.println("1");
delay(1000);
digitalWrite(led, LOW);
SerialUSB.println("0");
delay(1000);
}The onboard LED blinks, but as soon as i open the serial monitor the LED keeps its current state and stops blinking, even if i close the monitor again, so the DigiX seems "locked up" in it's current state.
Connecting with a Terminal program (HTerm) doesn't cause this (but with the terminal program i can reset the board with 1200 8N1, so i suppose the program is working).
Without the SerialUSB parts, opening the serial monitor also doesn't cause the "lock up"