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.
Diff: uart.cpp
- Revision:
- 39:1b76f7df8804
- Parent:
- 26:732bc37fbefd
- Child:
- 40:debe99e228d3
--- a/uart.cpp Fri Jan 18 11:52:00 2019 +0000
+++ b/uart.cpp Sat Jan 19 12:35:23 2019 +0000
@@ -7,15 +7,15 @@
//----------------------------------
#ifdef DEBUG_T_SERIAL
Serial sp(USBTX, USBRX); //有線のポート
- Serial spMoni(p9, p10);//TWILITEをモジュールを接続したポート/Outputのみ
+ Serial spMoni(p13, p14);//無線モジュールを接続したポート/Outputのみ
#define BAUD_RATE 115200
#else
-#define WIREED_SERIAL
+//#define WIREED_SERIAL
#ifdef WIREED_SERIAL
Serial sp(USBTX, USBRX); //有線のポート
#define BAUD_RATE 115200
#else
- Serial sp(p9, p10);//TWILITEをモジュールを接続したポート
+ Serial sp(p13, p14);//無線モジュールを接続したポート
#define BAUD_RATE 115200
#endif
#endif