teamALI / Mbed 2 deprecated HB2018

Dependencies:   mbed FreeRTOS

Revision:
4:7aa8cf0dd56f
Parent:
2:f0fbb23b4605
--- a/uart.cpp	Fri Nov 23 08:03:44 2018 +0000
+++ b/uart.cpp	Fri Nov 23 08:08:31 2018 +0000
@@ -30,7 +30,7 @@
 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 // UART 受信割り込みハンドラ for Arduino UNO(Six Axis Sensor)
 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-void uartRxIntHndler46AxisS(){
+void uartRxIntHndler46Axis(){
     //1Byte抜き出す
     UCHAR buf = sp46Axis.getc();
     //エコーバック
@@ -67,7 +67,7 @@
     
     //受信割り込みハンドラ登録
     sp46Axis.attach
-        (uartRxIntHndler46AxisS    //登録するハンドラ
+        (uartRxIntHndler46Axis    //登録するハンドラ
         ,Serial::RxIrq           //割り込み要因
         );