Browse Source

Remove old debugging stuff from AudioInputAnalog

dds
PaulStoffregen 11 years ago
parent
commit
7602cb2ece
1 changed files with 5 additions and 19 deletions
  1. +5
    -19
      input_adc.cpp

+ 5
- 19
input_adc.cpp View File

uint16_t *dest_left; uint16_t *dest_left;
audio_block_t *left; audio_block_t *left;


digitalWriteFast(2, HIGH);
daddr = (uint32_t)(dma.TCD->DADDR); daddr = (uint32_t)(dma.TCD->DADDR);
dma.clearInterrupt(); dma.clearInterrupt();


if (left != NULL) { if (left != NULL) {
offset = block_offset; offset = block_offset;
if (offset > AUDIO_BLOCK_SAMPLES/2) offset = AUDIO_BLOCK_SAMPLES/2; if (offset > AUDIO_BLOCK_SAMPLES/2) offset = AUDIO_BLOCK_SAMPLES/2;
//if (offset <= AUDIO_BLOCK_SAMPLES/2) {
dest_left = (uint16_t *)&(left->data[offset]);
block_offset = offset + AUDIO_BLOCK_SAMPLES/2;
do {
*dest_left++ = *src++;
} while (src < end);
//}
dest_left = (uint16_t *)&(left->data[offset]);
block_offset = offset + AUDIO_BLOCK_SAMPLES/2;
do {
*dest_left++ = *src++;
} while (src < end);
} }
digitalWriteFast(2, LOW);
} }




#if 0
void adc0_isr(void)
{
uint32_t tmp = ADC0_RA; // read ADC result to clear interrupt
digitalWriteFast(3, HIGH);
delayMicroseconds(1);
digitalWriteFast(3, LOW);
}
#endif



void AudioInputAnalog::update(void) void AudioInputAnalog::update(void)
{ {

Loading…
Cancel
Save