Remove midi_ep_task from ChibiOS (#23162)

Co-authored-by: Joel Challis <git@zvecr.com>
This commit is contained in:
Robin Carlier
2024-03-29 04:40:41 +01:00
committed by GitHub
parent 1d55b5e661
commit 42a725e355
2 changed files with 0 additions and 16 deletions

View File

@ -561,15 +561,6 @@ bool recv_midi_packet(MIDI_EventPacket_t *const event) {
return receive_report(USB_ENDPOINT_OUT_MIDI, (uint8_t *)event, sizeof(MIDI_EventPacket_t));
}
void midi_ep_task(void) {
uint8_t buffer[MIDI_STREAM_EPSIZE];
while (receive_report(USB_ENDPOINT_OUT_MIDI, buffer, sizeof(buffer))) {
MIDI_EventPacket_t event;
// TODO: this seems totally wrong? The midi task will never see any
// packets if we consume them here
recv_midi_packet(&event);
}
}
#endif
#ifdef VIRTSER_ENABLE