charptr32 file name
frac32 position
bool32.rising trigger
bool32.rising trigger
frac32buffer output
bool32.pulse end of stream
WORKING_AREA(waThreadSD, 800);
sdReadFilePingpong *stream;
int starttrig;
int stoptrig;
static sdReadFilePingpong s[attr_poly] __attribute__((section(".data")));
// unmap from aliased memory for DMA
stream = (sdReadFilePingpong *)(0x20000000 | (int)&s[parent->polyIndex]);
stream->pingpong = CLOSED;
stream->doSeek = 0;
stream->offset = -1;
starttrig = 0;
stoptrig = 0;
stream->pThreadSD = chThdCreateStatic(waThreadSD, sizeof(waThreadSD), HIGHPRIO,
ThreadSD, (void *)stream);
int32_t i;
outlet_end = 0;
if ((inlet_start > 0) && !starttrig) {
sdOpenStream(stream, inlet_filename);
sdSeekStream(stream, ((inlet_pos) >> 4) << 2);
starttrig = 1;
} else if ((!(inlet_start > 0)) && starttrig) {
starttrig = 0;
}
if ((inlet_stop > 0) && !stoptrig) {
sdCloseStream(stream);
stoptrig = 1;
} else if ((!(inlet_stop > 0)) && stoptrig) {
stoptrig = 0;
}
int16_t *p = 0;
int16_t *q = 0;
p = sdReadStream(stream);
if (p) {
for (i = 0; i < BUFSIZE; i++) {
outlet_out[i] = (*(p++)) << 10;
}
} else {
for (i = 0; i < BUFSIZE; i++)
outlet_out[i] = 0;
outlet_end = 1;
}
sdStopStreamer(stream);