浏览代码

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();

正在加载...
取消
保存