Closed GoogleCodeExporter closed 9 years ago
Hmm, I can't replicate this. Can you post a complete sketch with the problem?
Original comment by dmel...@gmail.com
on 2 Jun 2012 at 9:44
Build and upload the code below.
Open the serial monitor.
Actual Result: The chars "ooooooo" are printed to the monitor.
Arduino sketch
{{{
#include <Arduino.h>
#include <HardwareSerial.h>
void setup() {
Serial.begin(9600);
}
void loop() {
char* pData = NULL;
Serial.print(pData);
delay(1000);
}
}}}
Original comment by Jeffrey....@gmail.com
on 3 Jun 2012 at 6:36
https://github.com/arduino/Arduino/commit/b787982eec6c53319f8e8e580d7603cc16d733
ff
Original comment by dmel...@gmail.com
on 3 Jun 2012 at 11:49
Original issue reported on code.google.com by
Jeffrey....@gmail.com
on 1 Jun 2012 at 1:01