Browse Source

Add 23LC1024 support to AudioEffectDelayExternal

dds
PaulStoffregen 10 years ago
parent
commit
8927aa3506
2 changed files with 107 additions and 8 deletions
  1. +106
    -7
      effect_delay_ext.cpp
  2. +1
    -1
      effect_delay_ext.h

+ 106
- 7
effect_delay_ext.cpp View File



#include "effect_delay_ext.h" #include "effect_delay_ext.h"


//#define INTERNAL_TEST

// Use these with the audio adaptor board (should be adjustable by the user...)
#define SPIRAM_MOSI_PIN 7
#define SPIRAM_MISO_PIN 12
#define SPIRAM_SCK_PIN 14

#define SPIRAM_CS_PIN 6


void AudioEffectDelayExternal::update(void) void AudioEffectDelayExternal::update(void)
{ {
audio_block_t *block; audio_block_t *block;
// grab incoming data and put it into the memory // grab incoming data and put it into the memory
block = receiveReadOnly(); block = receiveReadOnly();
if (memory_type >= AUDIO_MEMORY_UNDEFINED) { if (memory_type >= AUDIO_MEMORY_UNDEFINED) {
// ignore input and do nothing is undefined memory type
// ignore input and do nothing if undefined memory type
release(block); release(block);
return; return;
} }


uint32_t AudioEffectDelayExternal::allocated[2] = {0, 0}; uint32_t AudioEffectDelayExternal::allocated[2] = {0, 0};



void AudioEffectDelayExternal::initialize(AudioEffectDelayMemoryType_t type, uint32_t samples) void AudioEffectDelayExternal::initialize(AudioEffectDelayMemoryType_t type, uint32_t samples)
{ {
uint32_t memsize, avail; uint32_t memsize, avail;
head_offset = 0; head_offset = 0;
memory_type = type; memory_type = type;
if (type == AUDIO_MEMORY_23LC1024) { if (type == AUDIO_MEMORY_23LC1024) {
//memsize = 65536;
#ifdef INTERNAL_TEST
memsize = 8000; memsize = 8000;
#else
memsize = 65536;
#endif
pinMode(SPIRAM_CS_PIN, OUTPUT);
digitalWriteFast(SPIRAM_CS_PIN, HIGH);
} else if (type == AUDIO_MEMORY_MEMORYBOARD) { } else if (type == AUDIO_MEMORY_MEMORYBOARD) {
memsize = 393216; memsize = 393216;
} else { } else {
memory_begin = allocated[type]; memory_begin = allocated[type];
allocated[type] += samples; allocated[type] += samples;
memory_length = samples; memory_length = samples;

SPI.setMOSI(SPIRAM_MOSI_PIN);
SPI.setMISO(SPIRAM_MISO_PIN);
SPI.setSCK(SPIRAM_SCK_PIN);

SPI.begin();
zero(0, memory_length); zero(0, memory_length);
} }




static int16_t testmem[8000];
#ifdef INTERNAL_TEST
static int16_t testmem[8000]; // testing only
#endif


#define SPISETTING SPISettings(20000000, MSBFIRST, SPI_MODE0)


void AudioEffectDelayExternal::read(uint32_t offset, uint32_t count, int16_t *data) void AudioEffectDelayExternal::read(uint32_t offset, uint32_t count, int16_t *data)
{ {
while (count) { *data++ = testmem[memory_begin + offset++]; count--; }
uint32_t addr = memory_begin + offset;

#ifdef INTERNAL_TEST
while (count) { *data++ = testmem[addr++]; count--; } // testing only
#else
if (memory_type == AUDIO_MEMORY_23LC1024) {
addr *= 2;
SPI.beginTransaction(SPISETTING);
digitalWriteFast(SPIRAM_CS_PIN, LOW);
SPI.transfer16((0x03 << 8) | (addr >> 16));
SPI.transfer16(addr & 0xFFFF);
while (count) {
*data++ = (int16_t)(SPI.transfer16(0));
count--;
}
digitalWriteFast(SPIRAM_CS_PIN, HIGH);
SPI.endTransaction();
} else if (memory_type == AUDIO_MEMORY_MEMORYBOARD) {
// TODO.... similar, but handle partition across 6 chips
}
#endif
} }


void AudioEffectDelayExternal::write(uint32_t offset, uint32_t count, const int16_t *data) void AudioEffectDelayExternal::write(uint32_t offset, uint32_t count, const int16_t *data)
{ {
while (count) { testmem[memory_begin + offset++] = *data++; count--; }
uint32_t addr = memory_begin + offset;

#ifdef INTERNAL_TEST
while (count) { testmem[addr++] = *data++; count--; } // testing only
#else
if (memory_type == AUDIO_MEMORY_23LC1024) {
addr *= 2;
SPI.beginTransaction(SPISETTING);
digitalWriteFast(SPIRAM_CS_PIN, LOW);
SPI.transfer16((0x02 << 8) | (addr >> 16));
SPI.transfer16(addr & 0xFFFF);
while (count) {
SPI.transfer16(*data++);
count--;
}
digitalWriteFast(SPIRAM_CS_PIN, HIGH);
SPI.endTransaction();
} else if (memory_type == AUDIO_MEMORY_MEMORYBOARD) {
// TODO.... similar, but handle partition across 6 chips
}
#endif
} }


void AudioEffectDelayExternal::zero(uint32_t offset, uint32_t count) void AudioEffectDelayExternal::zero(uint32_t offset, uint32_t count)
{ {
while (count) { testmem[memory_begin + offset++] = 0; count--; }
uint32_t addr = memory_begin + offset;

#ifdef INTERNAL_TEST
while (count) { testmem[addr++] = 0; count--; } // testing only
#else
if (memory_type == AUDIO_MEMORY_23LC1024) {
addr *= 2;
SPI.beginTransaction(SPISETTING);
//digitalWriteFast(SPIRAM_CS_PIN, LOW);
//SPI.transfer16((0x01 << 8) | 0x40); // not needed, defaults to this mode
//digitalWriteFast(SPIRAM_CS_PIN, HIGH);
//delayMicroseconds(1);
//digitalWriteFast(SPIRAM_CS_PIN, LOW);
//SPI.transfer16((0x05 << 8) | 0x40); // not needed, defaults to this mode
//digitalWriteFast(SPIRAM_CS_PIN, HIGH);
//delayMicroseconds(1);
digitalWriteFast(SPIRAM_CS_PIN, LOW);
SPI.transfer16((0x02 << 8) | (addr >> 16));
SPI.transfer16(addr & 0xFFFF);
while (count) {
SPI.transfer16(0);
count--;
}
digitalWriteFast(SPIRAM_CS_PIN, HIGH);
SPI.endTransaction();
} else if (memory_type == AUDIO_MEMORY_MEMORYBOARD) {
// TODO.... similar, but handle partition across 6 chips
}
#endif
} }









+ 1
- 1
effect_delay_ext.h View File

#ifndef effect_delay_ext_h_ #ifndef effect_delay_ext_h_
#define effect_delay_ext_h_ #define effect_delay_ext_h_
#include "AudioStream.h" #include "AudioStream.h"
#include "utility/dspinst.h"
#include "spi_interrupt.h"


enum AudioEffectDelayMemoryType_t { enum AudioEffectDelayMemoryType_t {
AUDIO_MEMORY_23LC1024 = 0, AUDIO_MEMORY_23LC1024 = 0,

Loading…
Cancel
Save