소스 검색

Do not disable all interrupts while opening RAW files

dds
PaulStoffregen 9 년 전
부모
커밋
4c6e76e2b4
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -2
      play_sd_raw.cpp

+ 1
- 2
play_sd_raw.cpp 파일 보기

@@ -40,11 +40,10 @@ bool AudioPlaySdRaw::play(const char *filename)
{
stop();
AudioStartUsingSPI();
__disable_irq();
rawfile = SD.open(filename);
__enable_irq();
if (!rawfile) {
//Serial.println("unable to open file");
AudioStopUsingSPI();
return false;
}
file_size = rawfile.size();

Loading…
취소
저장