You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
796 B
31 lines
796 B
//
|
|
// Created by Nicholas Newdigate on 18/07/2020.
|
|
//
|
|
|
|
#ifndef TEENSY_RESAMPLING_SDREADER_PLAYSERIALFLASHRAWRESMP_H
|
|
#define TEENSY_RESAMPLING_SDREADER_PLAYSERIALFLASHRAWRESMP_H
|
|
|
|
#include "Arduino.h"
|
|
#include "AudioStream.h"
|
|
#include "SerialFlash.h"
|
|
#include "stdint.h"
|
|
#include "ResamplingSerialFlashReader.h"
|
|
#include "playresmp.h"
|
|
|
|
class AudioPlaySerialFlashResmp : public AudioPlayResmp<newdigate::ResamplingSerialFlashReader>
|
|
{
|
|
public:
|
|
AudioPlaySerialFlashResmp(SerialFlashChip &fs) :
|
|
AudioPlayResmp<newdigate::ResamplingSerialFlashReader>()
|
|
{
|
|
reader = new newdigate::ResamplingSerialFlashReader(fs);
|
|
begin();
|
|
}
|
|
|
|
virtual ~AudioPlaySerialFlashResmp() {
|
|
delete reader;
|
|
}
|
|
};
|
|
|
|
|
|
#endif //TEENSY_RESAMPLING_SDREADER_PLAYSERIALFLASHRAWRESMP_H
|
|
|