Parcourir la source

Merge pull request #332 from FrankBoesing/patch-3

some fixes (again) inputs i2s... sorry..
dds
Paul Stoffregen il y a 4 ans
Parent
révision
307b74cb2d
Aucun compte lié à l'adresse e-mail de l'auteur
3 fichiers modifiés avec 3 ajouts et 5 suppressions
  1. +0
    -2
      input_i2s.cpp
  2. +2
    -2
      input_i2s2.cpp
  3. +1
    -1
      output_pwm.cpp

+ 0
- 2
input_i2s.cpp Voir le fichier

@@ -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 Voir le fichier

@@ -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 Voir le fichier

@@ -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

Chargement…
Annuler
Enregistrer