Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
main.cpp
- Committer:
- bcostm
- Date:
- 2017-07-08
- Revision:
- 1:ce08f1d8140c
- Parent:
- 0:0ee4748f4c5c
- Child:
- 2:eeab69a684ad
File content as of revision 1:ce08f1d8140c:
#include "mbed.h"
/*------------------------------------------------------------------------------
Before to use this example, ensure that you an hyperterminal installed on your
computer. More info here: https://developer.mbed.org/handbook/Terminals
The default serial comm port uses the SERIAL_TX and SERIAL_RX pins (see their
definition in the PinNames.h file).
The default serial configuration in this case is 9600 bauds, 8-bit data, no parity
If you want to change the baudrate for example, you have to redeclare the
serial object in your code:
Serial pc(SERIAL_TX, SERIAL_RX);
Then, you can modify the baudrate and print like this:
pc.baud(115200);
pc.printf("Hello World !\n");
------------------------------------------------------------------------------*/
DigitalOut led(LED1);
int main()
{
int i = 1;
printf("Hello World !\n");
while(1) {
wait(1); // 1 second
led = !led; // Toggle LED
printf("This program runs since %d seconds.\n", i++);
}
}