Solved! I had neglected to code the new derived class constructor!:
class HSerialFlashFile : public SerialFlashFile
{
public:
HSerialFlashFile() : SerialFlashFile() {}
void setAddress(uint32_t newAddress, ....)
{
this->address...
Hi all! In my audio application, I need to open many audio files (stored in the external flash chip on the Audio Adaptor) in the "same time".
Each activity with an audio file starts with:
SerialFlashFile rawfile;
rawfile =...