wave file parser WIP

This commit is contained in:
Sebastian
2025-06-06 10:22:29 +02:00
parent 55bcb2c389
commit db463c5b8c
2 changed files with 104 additions and 0 deletions

View File

@ -10,6 +10,7 @@
#include <SD.h>
#include "codec.h"
#include "ringbuffer.h"
#include "wavestream.h"
#define HAPTIC 1
#define AURAL 1
@ -26,6 +27,8 @@ int16_t buffer2[ECHO];
RingBuffer<int16_t> ringbuffer[NSTREAMS];
WaveStream stream;
File streams[NSTREAMS];
bool streams_loaded = false;