Henk Meewis / Mbed 2 deprecated frdm_echo

Dependencies:   mbed

main.cpp

Committer:
silverpanda
Date:
2014-04-13
Revision:
0:6898e364f29a
Child:
1:20033a89af0e

File content as of revision 0:6898e364f29a:

// Print "Hello World" to the PC

#include "mbed.h"

Serial usbSerial(USBTX, USBRX);

void sendText(char *thisText)
{
    usbSerial.printf(thisText);
}
//-----------------------------------------------------------------------------

void helloWorld()
{
    sendText("Hello World\n");
}
//-----------------------------------------------------------------------------

int main() {
    while(true) { 
        helloWorld();
        wait(2.0);
    }
}
//-----------------------------------------------------------------------------