Question.2
Jackie wants to observe the data transmitted over UART using a Digital Storage Oscilloscope (DSO). Analyze the given code and connection diagram. Which waveform will Jackie see on the DSO?
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.write(0x61);
while(1);
}