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@5:47cf103f9223, 2021-05-14 (annotated)
- Committer:
- e2011220
- Date:
- Fri May 14 10:31:01 2021 +0000
- Revision:
- 5:47cf103f9223
- Parent:
- 4:5df1bfac0f43
- Child:
- 6:ef64b02d2ff5
double and float
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 | 5:47cf103f9223 | 6 | double bit_[3]= {10.02,20.32,30.23}; //任意の型の配列 |
| e2011220 | 1:a9cd302df0c5 | 7 | TWE.write(bit_,40); |
| e2011220 | 0:1779b0a23b09 | 8 | } |
| e2011220 | 4:5df1bfac0f43 | 9 | } |