Ver código fonte

Merge pull request #332 from FrankBoesing/patch-3

some fixes (again) inputs i2s... sorry..
dds
Paul Stoffregen 4 anos atrás
pai
commit
307b74cb2d
Nenhuma conta vinculada ao e-mail do autor do commit
3 arquivos alterados com 3 adições e 5 exclusões
  1. +0
    -2
      input_i2s.cpp
  2. +2
    -2
      input_i2s2.cpp
  3. +1
    -1
      output_pwm.cpp

+ 0
- 2
input_i2s.cpp Ver arquivo

@@ -122,9 +122,7 @@ void AudioInputI2S::isr(void)
dest_left = &(left->data[offset]);
dest_right = &(right->data[offset]);
AudioInputI2S::block_offset = offset + AUDIO_BLOCK_SAMPLES/2;
#if IMXRT_CACHE_ENABLED >=1
arm_dcache_delete(src, sizeof(i2s_rx_buffer) / 2);
#endif
do {
*dest_left++ = *src++;
*dest_right++ = *src++;

+ 2
- 2
input_i2s2.cpp Ver arquivo

@@ -102,9 +102,9 @@ void AudioInputI2S2::isr(void)
dest_left = &(left->data[offset]);
dest_right = &(right->data[offset]);
AudioInputI2S2::block_offset = offset + AUDIO_BLOCK_SAMPLES/2;
#if IMXRT_CACHE_ENABLED >=1
arm_dcache_delete(src, sizeof(i2s_rx_buffer) / 2);
#endif
do {
*dest_left++ = *src++;
*dest_right++ = *src++;

+ 1
- 1
output_pwm.cpp Ver arquivo

@@ -213,7 +213,7 @@ extern uint8_t analog_write_res;
extern const struct _pwm_pin_info_struct pwm_pin_info[];
audio_block_t * AudioOutputPWM::block = NULL;
DMAMEM __attribute__((aligned(32))) static uint16_t pwm_tx_buffer[2][AUDIO_BLOCK_SAMPLES * 2];
DMAChannel AudioOutputPWM::dma[2](false);
DMAChannel AudioOutputPWM::dma[2];
_audio_info_flexpwm AudioOutputPWM::apins[2];

FLASHMEM

Carregando…
Cancelar
Salvar