소스 검색

Merge pull request #332 from FrankBoesing/patch-3

some fixes (again) inputs i2s... sorry..
dds
Paul Stoffregen 4 년 전
부모
커밋
307b74cb2d
No account linked to committer's email address
3개의 변경된 파일3개의 추가작업 그리고 5개의 파일을 삭제
  1. +0
    -2
      input_i2s.cpp
  2. +2
    -2
      input_i2s2.cpp
  3. +1
    -1
      output_pwm.cpp

+ 0
- 2
input_i2s.cpp 파일 보기

@@ -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 파일 보기

@@ -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 파일 보기

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

Loading…
취소
저장