ソースを参照

use cmsis library for arm_math.h

main
John Robinson 3年前
コミット
452c6b6418
この署名に対応する既知のキーがデータベースに存在しません
14個のファイルの変更14行の追加12行の削除
  1. +1
    -1
      include/audio/analyze_fft1024.h
  2. +1
    -1
      include/audio/analyze_fft256.h
  3. +1
    -1
      include/audio/async_input_spdif3.h
  4. +1
    -1
      include/audio/biquad.h
  5. +1
    -1
      include/audio/filter_fir.h
  6. +1
    -1
      include/audio/synth_pwm.h
  7. +1
    -1
      include/audio/synth_sine.h
  8. +1
    -1
      include/audio/synth_waveform.h
  9. +1
    -0
      library.json5
  10. +1
    -0
      package.json5
  11. +1
    -1
      src/audio/analyze_notefreq.cpp
  12. +1
    -1
      src/audio/effect_flange.cpp
  13. +1
    -1
      src/audio/synth_tonesweep.cpp
  14. +1
    -1
      src/audio/synth_waveform.cpp

+ 1
- 1
include/audio/analyze_fft1024.h ファイルの表示

@@ -29,7 +29,7 @@

#include <core/Arduino.h>
#include <core/AudioStream.h>
#include <core/arm_math.h>
#include <arm_math.h>

// windows.c
extern "C" {

+ 1
- 1
include/audio/analyze_fft256.h ファイルの表示

@@ -29,7 +29,7 @@

#include <core/Arduino.h>
#include <core/AudioStream.h>
#include <core/arm_math.h>
#include <arm_math.h>

// windows.c
extern "C" {

+ 1
- 1
include/audio/async_input_spdif3.h ファイルの表示

@@ -33,7 +33,7 @@
#include <core/Arduino.h>
#include <core/AudioStream.h>
#include <core/DMAChannel.h>
#include <core/arm_math.h>
#include <arm_math.h>

//#define DEBUG_SPDIF_IN //activates debug output


+ 1
- 1
include/audio/biquad.h ファイルの表示

@@ -30,7 +30,7 @@
#define biquad_coeffs_h_

#include <core/Arduino.h>
#include <core/arm_math.h>
#include <arm_math.h>
#include <type_traits>

enum class BiquadType {

+ 1
- 1
include/audio/filter_fir.h ファイルの表示

@@ -25,7 +25,7 @@

#include <core/Arduino.h>
#include <core/AudioStream.h>
#include <core/arm_math.h>
#include <arm_math.h>

// Indicates that the code should just pass through the audio
// without any filtering (as opposed to doing nothing at all)

+ 1
- 1
include/audio/synth_pwm.h ファイルの表示

@@ -29,7 +29,7 @@

#include <core/Arduino.h>
#include <core/AudioStream.h>
#include <core/arm_math.h>
#include <arm_math.h>

class AudioSynthWaveformPWM : public AudioStream
{

+ 1
- 1
include/audio/synth_sine.h ファイルの表示

@@ -29,7 +29,7 @@

#include <core/Arduino.h>
#include <core/AudioStream.h>
#include <core/arm_math.h>
#include <arm_math.h>

// TODO: investigate making a high resolution sine wave
// using Taylor series expansion.

+ 1
- 1
include/audio/synth_waveform.h ファイルの表示

@@ -29,7 +29,7 @@

#include <core/Arduino.h>
#include <core/AudioStream.h>
#include <core/arm_math.h>
#include <arm_math.h>

// waveforms.c
extern "C" {

+ 1
- 0
library.json5 ファイルの表示

@@ -6,5 +6,6 @@
'teensy/serial-flash',
'teensy/sd',
'teensy/spi',
'cmsis/dsp',
],
}

+ 1
- 0
package.json5 ファイルの表示

@@ -8,5 +8,6 @@
'teensy-serial-flash^1.0.0',
'teensy-sd^1.2.2',
'teensy-spi^1.0.0',
'cmsis^5.7.0',
],
}

+ 1
- 1
src/audio/analyze_notefreq.cpp ファイルの表示

@@ -23,7 +23,7 @@
#include <core/Arduino.h>
#include "audio/analyze_notefreq.h"
#include "audio/utility/dspinst.h"
#include <core/arm_math.h>
#include <arm_math.h>

#define HALF_BLOCKS AUDIO_GUITARTUNER_BLOCKS * 64


+ 1
- 1
src/audio/effect_flange.cpp ファイルの表示

@@ -22,7 +22,7 @@

#include <core/Arduino.h>
#include "audio/effect_flange.h"
#include <core/arm_math.h>
#include <arm_math.h>

/******************************************************************/
// A u d i o E f f e c t F l a n g e

+ 1
- 1
src/audio/synth_tonesweep.cpp ファイルの表示

@@ -22,7 +22,7 @@

#include <core/Arduino.h>
#include "audio/synth_tonesweep.h"
#include <core/arm_math.h>
#include <arm_math.h>




+ 1
- 1
src/audio/synth_waveform.cpp ファイルの表示

@@ -26,7 +26,7 @@

#include <core/Arduino.h>
#include "audio/synth_waveform.h"
#include <core/arm_math.h>
#include <arm_math.h>
#include "audio/utility/dspinst.h"



読み込み中…
キャンセル
保存