hello all,
i habe a problem with the serial port on my arduino due board.
i can upload sketches and they are working. i have tested the "blink" examples.
so the connection seems to be ok.
but if i try to read something from the standard serial port, it does not work.
i tryed the simple sketch attached.
i am using the native usb port. arduino 1.5.2. on mac osx 10.6.8
i have tested the sketch with the serial monitor.
could it be the usb cable ? so that only one direction is working.
my arduino uno ist working perfectly on my machine ...
all the best,
lee
void setup() {
Serial.begin(9600);
Serial.println("Hello world \n");
delay(1000);
Serial.println("Hello world \n");
}
void loop() {
Serial.println("loop");
}