~ruther/qmk_firmware

ref: af4a806e3f1d338402f2ec828120ebc3ba43b3c8 qmk_firmware/quantum/midi/qmk_midi.h -rw-r--r-- 299 bytes
af4a806e — Ryan `qmk find`: Fix typo in filter logging (#23693) 1 year, 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
#pragma once

#ifdef MIDI_ENABLE
#    include "midi.h"
#    include <LUFA/Drivers/USB/USB.h>
extern MidiDevice midi_device;
void              setup_midi(void);
void              send_midi_packet(MIDI_EventPacket_t* event);
bool              recv_midi_packet(MIDI_EventPacket_t* const event);
#endif