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:
- taknokolat
- Date:
- 2018-12-24
- Revision:
- 0:c86e9047cf33
File content as of revision 0:c86e9047cf33:
#include "mbed.h"
Serial g_Serial1(USBTX,USBRX,115200);
//Serial g_serial2(PB_6, PB_7);skipper
Serial g_serial2(PA_9, PA_10);
int main() {
g_serial2.baud(115200);
while(1) {
g_serial2.printf( "S");
g_serial2.printf( "N");
g_serial2.printf( "A");
g_serial2.printf( "A");
g_serial2.printf( "F");
//wait(1.0);
g_Serial1.printf("a\r\n");
wait_ms(31);
}
}