Detect I2C devices
Revision 3:0ca27c666888, committed 2020-12-04
- Comitter:
- MACRUM
- Date:
- Fri Dec 04 11:02:57 2020 +0900
- Parent:
- 2:85afa5129e56
- Commit message:
- Add mbed_app.json file
Changed in this revision
| .hgignore | Show annotated file Show diff for this revision Revisions of this file |
| mbed_app.json | Show annotated file Show diff for this revision Revisions of this file |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.hgignore Fri Dec 04 11:02:57 2020 +0900 @@ -0,0 +1,3 @@ +^BUILD$ +^.mbed$ +^mbed-os$
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed_app.json Fri Dec 04 11:02:57 2020 +0900
@@ -0,0 +1,13 @@
+{
+ "macros": [
+ ],
+ "target_overrides": {
+ "*": {
+ "platform.stdio-baud-rate" : 115200,
+ "platform.stdio-convert-newlines" : true,
+ "platform.stdio-buffered-serial" : true,
+ "platform.stdio-flush-at-exit" : true,
+ "target.printf_lib" : "std"
+ }
+ }
+}
\ No newline at end of file
Toyomasa Watarai