소스 검색

Add AudioStream update_stop

teensy4-core
PaulStoffregen 11 년 전
부모
커밋
3e9587f682
2개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. +6
    -0
      teensy3/AudioStream.cpp
  2. +1
    -0
      teensy3/AudioStream.h

+ 6
- 0
teensy3/AudioStream.cpp 파일 보기

@@ -183,6 +183,12 @@ bool AudioStream::update_setup(void)
return true;
}

void AudioStream::update_stop(void)
{
NVIC_DISABLE_IRQ(IRQ_SOFTWARE);
update_scheduled = false;
}

AudioStream * AudioStream::first_update = NULL;

void software_isr(void) // AudioStream::update_all()

+ 1
- 0
teensy3/AudioStream.h 파일 보기

@@ -127,6 +127,7 @@ protected:
audio_block_t * receiveReadOnly(unsigned int index = 0);
audio_block_t * receiveWritable(unsigned int index = 0);
static bool update_setup(void);
static void update_stop(void);
static void update_all(void) { NVIC_SET_PENDING(IRQ_SOFTWARE); }
friend void software_isr(void);
friend class AudioConnection;

Loading…
취소
저장