Realtime sound spectrogram using FFT or linear prediction. Spectrogram is displayed on the display of PC. リアルタイム・スペクトログラム.解析の手法:FFT,線形予測法.スペクトログラムは PC のディスプレー装置に表示される.PC 側のプログラム:F446_Spectrogram.

Dependencies:   Array_Matrix mbed SerialTxRxIntr F446_AD_DA UIT_FFT_Real

Revision:
5:fcc1b0b4737e
Parent:
4:fe1885675421
diff -r fe1885675421 -r fcc1b0b4737e myFunction.hpp
--- a/myFunction.hpp	Mon Jul 23 05:53:29 2018 +0000
+++ b/myFunction.hpp	Sun Oct 07 05:15:04 2018 +0000
@@ -1,7 +1,7 @@
 //---------------------------------------------------------------------
 //  データを PC へ転送
 //
-//  2018/07/23, Copyright (c) 2018 MIKAMI, Naoki
+//  2018/10/07, Copyright (c) 2018 MIKAMI, Naoki
 //---------------------------------------------------------------------
 
 #include <string>
@@ -24,8 +24,8 @@
         str += a.quot + 0x10;
         str += a.rem + 0x10;
     }
-    rxTx_.Tx(str);
-    rxTx_.Tx("EOT");
+    rxTx_.Tx(str+"\n");
+    rxTx_.Tx("EOT\n");
 }
 
 #endif  // MY_FUNCTION_XFER_HPP