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:
- 25:f3a6e7eec9c3
- Parent:
- 21:78302ecdb661
- Child:
- 26:732bc37fbefd
--- a/uart.cpp Mon Dec 10 12:29:37 2018 +0000
+++ b/uart.cpp Wed Dec 12 23:52:22 2018 +0000
@@ -61,6 +61,17 @@
}
}
+//-------------------------------------------------------------
+//ESCが来た時の処理
+//-------------------------------------------------------------
+static void xEsc(){
+ //バッファクリア
+ xBufClear();
+ //ESCをセット
+ xPush(ESC);
+ xSendMsg();
+}
+
//=============================================================
// コマンドバッファへ受信キャラを格納
//=============================================================
@@ -76,6 +87,8 @@
break;
//▼エスケープ キャリッジリターン
case ESC:
+ xEsc();
+ break;
case CR :
/*何もしない*/
break;