First Publish. Works fine.

Dependents:   unzen_sample_nucleo_f746 unzen_delay_sample_nucleo_f746 skeleton_unzen_nucleo_f746 ifmag_noise_canceller ... more

Nucleo F746ZG用のオーディオ・フレームワークです。フレームワーク地震の詳細は『雲仙』オーディオ・フレームワークを参照してください。

参考リンク

  • skeleton_unzen_nucleo_f746 Nucleo F746ZGおよびUI基板を使う場合のスケルトンプログラム。F746を使う方はここから読み始めると良いでしょう。
Revision:
11:5f91f55065c1
Parent:
10:45cbff9ee6e4
Child:
12:5e73a102d809
--- a/unzen.h	Sun May 08 09:52:36 2016 +0000
+++ b/unzen.h	Sun May 08 09:56:29 2016 +0000
@@ -24,7 +24,7 @@
     /**
       \brief singleton style audio frame work. Create a object and execute the \ref framework::start() method.
     */
-    class framework 
+    class Framework 
     {
     private:
             /**
@@ -39,7 +39,7 @@
                 call back is called )
                 as 1. If it is needed to use other value, call \ref set_brock_size() method. 
             */
-        framework(void);
+        Framework(void);
     public:
             /**
                 \brief getting the singleton object for processing.
@@ -47,7 +47,7 @@
                 \details
                 TO call the object method, use this method to retrieve the singleton object.
             */
-        static framework * get() { static framework singleton; return &singleton ; }
+        static Framework * get() { static Framework singleton; return &singleton ; }
         
             /**
                 \brief set the interval interrupt count for each time call back is called.