소스 검색

USB MIDI - don't hog transmit buffers

teensy4-core
PaulStoffregen 6 년 전
부모
커밋
87f6186546
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      teensy3/usb_midi.c

+ 2
- 2
teensy3/usb_midi.c 파일 보기

@@ -133,7 +133,7 @@ void usb_midi_write_packed(uint32_t n)
} else {
tx_packet->len = MIDI_TX_SIZE;
usb_tx(MIDI_TX_ENDPOINT, tx_packet);
tx_packet = usb_malloc();
tx_packet = NULL;
}
tx_noautoflush = 0;
}
@@ -189,7 +189,7 @@ void usb_midi_flush_output(void)
if (tx_noautoflush == 0 && tx_packet && tx_packet->index > 0) {
tx_packet->len = tx_packet->index * 4;
usb_tx(MIDI_TX_ENDPOINT, tx_packet);
tx_packet = usb_malloc();
tx_packet = NULL;
}
}


Loading…
취소
저장