serial communication @ 921600bps - Working fine on hyperterminal as well as bray's

Dependencies:   mbed

main.cpp

Committer:
Rahul
Date:
2010-03-11
Revision:
0:d57a982ac59a

File content as of revision 0:d57a982ac59a:

#include "mbed.h"

Serial pc(USBTX, USBRX);
Timer t;
DigitalOut led1(LED1);
int main() 
{
    pc.baud(921600);
    pc.format(8,Serial::None,1);
    while(1)
    {
    t.start();
    pc.printf("Hello World! @921.600kbps\n",1285);
    t.stop();
    pc.printf("The time taken was %f seconds\n", t.read());
    t.reset();
    wait(1.0);
    led1 = !led1;
    }
}