mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-11-03 23:02:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			299 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			299 B
		
	
	
	
		
			C
		
	
	
	
	
	
#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
 |