Kaynağa Gözat

USB MIDI - don't hog transmit buffers

teensy4-core
PaulStoffregen 6 yıl önce
ebeveyn
işleme
87f6186546
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. +2
    -2
      teensy3/usb_midi.c

+ 2
- 2
teensy3/usb_midi.c Dosyayı Görüntüle

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


Yükleniyor…
İptal
Kaydet