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:
- sasakisho
- Date:
- 2020-07-01
- Revision:
- 0:114501d9843c
File content as of revision 0:114501d9843c:
/* TWE-Liteにmbedから適当な文字を送信するプログラム */
#include "mbed.h"
Serial pc(USBTX, USBRX); //Serial set up
Serial twe(p13, p14);
int main()
{
int i = 0;
pc.printf("start!");
pc.baud(115200);
twe.baud(115200);
while(1)
{
twe.printf("%d\r\n", i);
wait(1);
i++;
}
}