Reset Button not working.

Hi!

I have a problem with my due. The reset button is not working. I tried to test it using a simple Serial write sketch...
Does anyone know why or how to fix this?
I noticed this as I was testing my Displayshield. Somehow it only showed something as I flashed the sketch to the Chip, after connecting/disconnecting the Arduino it was just showing a white screen.

int led = 13;

// the setup routine runs once when you press reset:
void setup() {
  Serial.begin(115200);
  // initialize the digital pin as an output.
  pinMode(led, OUTPUT);
  Serial.println("reboot succesfull!");
}

// the loop routine runs over and over again forever:
void loop() {
  digitalWrite(led, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);               // wait for a second
  digitalWrite(led, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);               // wait for a second
Serial.println("not rebooting :(");
}

Hello,
same problem over here. Have a look at this: Due won't start after power off-on, have to reset - Arduino Due - Arduino Forum.
Maybe these two issues are related. Mine won't reset if I press the reset button and also runs its sketch only after a short power off (some seconds).

I have the exact same problem. Pressing RESET does nothing. The only way to reset the board is to disconnect the USB cable and then re-connect it. My board is REV R3.