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@6:ef64b02d2ff5, 2021-05-20 (annotated)
- Committer:
- e2011220
- Date:
- Thu May 20 15:23:17 2021 +0000
- Revision:
- 6:ef64b02d2ff5
- Parent:
- 5:47cf103f9223
- Child:
- 7:f8369dfbf022
plastic
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| e2011220 | 0:1779b0a23b09 | 1 | #include "Serial_Writer.h" |
| e2011220 | 1:a9cd302df0c5 | 2 | Serial_Writer TWE(D5,D4,115200); |
| e2011220 | 4:5df1bfac0f43 | 3 | int main(void) |
| e2011220 | 4:5df1bfac0f43 | 4 | { |
| e2011220 | 4:5df1bfac0f43 | 5 | while(true) { |
| e2011220 | 6:ef64b02d2ff5 | 6 | char consts[3]={'A','B','C'}; |
| e2011220 | 6:ef64b02d2ff5 | 7 | TWE.write(consts); |
| e2011220 | 6:ef64b02d2ff5 | 8 | wait_ms(5); |
| e2011220 | 0:1779b0a23b09 | 9 | } |
| e2011220 | 4:5df1bfac0f43 | 10 | } |