29 March 2010
Task 37 - Random Number Program with high Baud rates
//set up random number seed & baud rate to SM
void setup()
{
//Serial.begin(300);
//Serial.begin(1200);
//Serial.begin(10126);
Serial.begin(10127);
//Serial.begin(280);
//Serial.begin(9600);
randomSeed(analogRead(0));
}//end setup()
The lower image records data @ 10126 Baud; above, @ 10127 Baud.
This may well be dependent on the computer i was using - i don't actually know, but on this one in D312, @ 10127 Baud the data turned to mush!
The SM's receiving rate was 14400 B, since its combo-box didn't allow for precise Baud rate matching..
Labels:
Baud rates,
Random numbers,
Serial Monitor,
software,
TASKS
Subscribe to:
Post Comments (Atom)
i think people have posted higher maximum Baud rates, but not much higher than this - i seem to recall reading ~13000+ Baud somewhere..
ReplyDelete