소스 검색

FLASHMEM instead of PROGMEM for functions

dds
awalch6679 4 년 전
부모
커밋
84da392ddd
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      async_input_spdif3.cpp

+ 2
- 2
async_input_spdif3.cpp 파일 보기

@@ -64,7 +64,7 @@ AsyncAudioInputSPDIF3::~AsyncAudioInputSPDIF3(){
delete quantizer[1];
}

PROGMEM
FLASHMEM
AsyncAudioInputSPDIF3::AsyncAudioInputSPDIF3(bool dither, bool noiseshaping,float attenuation, int32_t minHalfFilterLength, int32_t maxHalfFilterLength):
AudioStream(0, NULL),
_resampler(attenuation, minHalfFilterLength, maxHalfFilterLength)
@@ -76,7 +76,7 @@ AsyncAudioInputSPDIF3::AsyncAudioInputSPDIF3(bool dither, bool noiseshaping,floa
quantizer[1]->configure(noiseshaping, dither, factor);
begin();
}
PROGMEM
FLASHMEM
void AsyncAudioInputSPDIF3::begin()
{

Loading…
취소
저장