Basic Audio Signal Processing Library

Dependents:   unzen_sample_nucleo_f746 skeleton_unzen_nucleo_f746 ifmag_noise_canceller synthesizer_f746

オーディオ信号処理用のライブラリです。

mbed-dspのフィルタ群向けに作ったクラス・ラッパーのほか、以下のクラスを用意しています。

  • ヒステリシス
  • sin/cosオシレータ
  • リミッター

クラスは全て名前空間amakusaに含まれます。

Committer:
shorie
Date:
Mon Jan 02 11:04:49 2017 +0000
Revision:
1:0a37bce4f985
Parent:
0:058daa59980d
Child:
2:fbdf03b330ae
Wrapper classes of the mbed-dsp filter

Who changed what in which revision?

UserRevisionLine numberNew contents of line
shorie 0:058daa59980d 1 /**
shorie 0:058daa59980d 2 * @file amakusa.h
shorie 0:058daa59980d 3 * @brief Main include file of the audio_signal
shorie 0:058daa59980d 4 */
shorie 0:058daa59980d 5
shorie 0:058daa59980d 6 #ifndef _AMAKUSA_H_
shorie 0:058daa59980d 7 #define _AMAKUSA_H_
shorie 0:058daa59980d 8
shorie 1:0a37bce4f985 9 #include "arm_math.h"
shorie 0:058daa59980d 10
shorie 1:0a37bce4f985 11 #include "limitterlinatan.h"
shorie 1:0a37bce4f985 12 #include "abstractfilter.h"
shorie 1:0a37bce4f985 13 #include "oscsincos.h"
shorie 1:0a37bce4f985 14 #include "biquadcascadedf1.h"
shorie 1:0a37bce4f985 15 #include "firfilter.h"
shorie 1:0a37bce4f985 16 #include "biquadcascadedf1.h"
shorie 1:0a37bce4f985 17 #include "biquadcascadedf2t.h"
shorie 1:0a37bce4f985 18 #include "firinterpolator.h"
shorie 1:0a37bce4f985 19 #include "firdecimator.h"
shorie 0:058daa59980d 20 #endif