MPU6050のサンプルプログラム2
Dependencies: ConfigFile SDFileSystem mbed
Fork of LAURUS_program by
ErrorLogger.h@1:6cd6d2760856, 2015-05-24 (annotated)
- Committer:
- ojan
- Date:
- Sun May 24 17:32:47 2015 +0000
- Revision:
- 1:6cd6d2760856
- Parent:
- 0:bc6f14fc60c7
Send all sensor's data to PC
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ojan | 0:bc6f14fc60c7 | 1 | #pragma once |
ojan | 0:bc6f14fc60c7 | 2 | #include "mbed.h" |
ojan | 0:bc6f14fc60c7 | 3 | |
ojan | 0:bc6f14fc60c7 | 4 | static Serial* debugPort = 0; |
ojan | 0:bc6f14fc60c7 | 5 | |
ojan | 0:bc6f14fc60c7 | 6 | void InitLogger(Serial* dp); |
ojan | 0:bc6f14fc60c7 | 7 | |
ojan | 0:bc6f14fc60c7 | 8 | /* |
ojan | 0:bc6f14fc60c7 | 9 | エラーメッセージを送信してプログラムを中断する |
ojan | 0:bc6f14fc60c7 | 10 | 引数: |
ojan | 0:bc6f14fc60c7 | 11 | */ |
ojan | 0:bc6f14fc60c7 | 12 | |
ojan | 0:bc6f14fc60c7 | 13 | void AbortWithMsg(const char* msg); |