Yes, the USART is the same.
Yes, I am using the IDE's serial monitor to look for the answer...
I have just tried to remove the atmega328p from the duemilanove and build an easy circuit on a breadboard with this code:
void setup()
{
pinMode(13, OUTPUT);
digitalWrite(13, HIGH);
delay(300);
digitalWrite(13, LOW);
delay(300);
Serial.begin(9600);
delay(500);
Serial.write(0x55);
while(!Serial.available());
}
void loop()
{
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
}
so if it works the led connected to pin 13 should blink...but nothing...