Arduino Due and serial terminal

I tried the serial terminal in arduino due, the serial monitor does not activate. I program with the listing below, launch a normal serial terminal and everything works fine. Where am I wrong?
`void setup() {
Serial.begin(9600);
}

void loop() {
Serial.println("Hello world! Jack");
delay(1000);
}`

Make sure your terminal matches the 9600 baud rate. Do you get ANYTHING? Garbled data = wrong bauid rate/comm format (8N1)

Thanks for replay,
9600 baud rate is correct, the arduino due monitor does not open.

I have used this procedure :https://docs.arduino.cc/software/ide-v2/tutorials/ide-v2-serial-monitor

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.