Parcourir la source

USB MIDI - don't hog transmit buffers

teensy4-core
PaulStoffregen il y a 6 ans
Parent
révision
87f6186546
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +2
    -2
      teensy3/usb_midi.c

+ 2
- 2
teensy3/usb_midi.c Voir le fichier

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


Chargement…
Annuler
Enregistrer