Hi,
first, I was very impressed by this scope - I don't have a Mac, but what I saw in the flash, it looks fantastic!
I have a problem. I wanted to create a similar front-end to yours, but on my Windows machine.
When I'm running this Arduino code on my Arduino Pro, I don't get more that 200 - 250 kbps between arduino (thru the FTDI chip) into my Java Application.
Maybe you have some more experiences, what's wrong with this code? (It's a subset of your lines):
void setup() {
Serial.begin(1000000);
UCSR0A |= 2;
// send a message to let the computer know you are alive
Serial.print("Hello World");
while(true) {
//Serial.write((high2 << 5) | (low2 >> 3) | 0x80);
UDR0 = 0xff;
}
}
Is there anything special needed to set up on the port's properties or anything?
Thanks,
Adam