| 55 | } |
| 56 | |
| 57 | void AudioPlaySerialflashRaw::stop(void) |
| 58 | { |
| 59 | __disable_irq(); |
| 60 | if (playing) { |
| 61 | playing = false; |
| 62 | __enable_irq(); |
| 63 | rawfile.close(); |
| 64 | AudioStopUsingSPI(); |
| 65 | } else { |
| 66 | __enable_irq(); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | |
| 71 | void AudioPlaySerialflashRaw::update(void) |
nothing calls this directly
no test coverage detected