I have a problem with my aruino nano v3.0. It seems, the usb-serial cannot transfer data full speed?
with my other arduino (leonardo) works fine.
here the sketch:
void setup()
{
Serial.begin(115200);
// loop here
for (;;) {
while(Serial.available()==0) ;
Serial.read();
}
}
void loop(){
}
with processing sending a lot of bytes with the same baud-rate, the result on nano:
Average frames/sec: 37, bytes/sec: 11986
Average frames/sec: 36, bytes/sec: 11680
Average frames/sec: 35, bytes/sec: 11647
Average frames/sec: 35, bytes/sec: 11645
Average frames/sec: 35, bytes/sec: 11580
same sketch, same test with leonordo returns 132 frames/sec (=41976 bytes/sec)
what's wrong with nano?
I tried another nano board, result is same..
thanks
edit: tested on windows 7 (64bit) with corrected latency-time on the COM-driver and Ubuntu 12.10 (32bit)