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.
main.cpp
- Committer:
- e2011220
- Date:
- 2021-05-20
- Revision:
- 6:ef64b02d2ff5
- Parent:
- 5:47cf103f9223
- Child:
- 7:f8369dfbf022
File content as of revision 6:ef64b02d2ff5:
#include "Serial_Writer.h"
Serial_Writer TWE(D5,D4,115200);
int main(void)
{
while(true) {
char consts[3]={'A','B','C'};
TWE.write(consts);
wait_ms(5);
}
}