Boy, you guys had me going!
So, I set up an Arduino to send the character string "ABCD" followed by a 2 mS delay (just because). I set up RS232 decode and, voila', I can trigger on any of the 4 characters. It took me a moment to realize that the character was to the left of the trigger mark. But of course! You can't trigger on something until you have seen it all.
I also tried 115200 baud and no delay - it works even better. And I put a very long string after the "ABCD" thing and it still works!
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.print("ABCD now is the time for all good men to come to the aid of their country");
;delay(2);
}
No, I'm not going to try to photograph the screen much less try to download an image. Try the experiment yourself. It works!
I have not tried I2C or SPI but, if I get bored later today, I might.