mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 05:12:33 +01:00 
			
		
		
		
	 e9d32b60b7
			
		
	
	
		e9d32b60b7
		
	
	
	
	
		
			
			* Copy Chibios serial_usb_driver into the chibios/protocol It's renamed to usb_driver to avoid name conflicts * Make the usb driver compile * Disable ChibiOS serial usb driver for all keyboards * Change usb_main to use QMKUSBDriver * Initialize the usb driver buffers * Add support for fixed size queues * Fix USB driver initialization * Don't transfer an empty packet for fixed size streams
		
			
				
	
	
		
			21 lines
		
	
	
		
			476 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			476 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| PROTOCOL_DIR = protocol
 | |
| CHIBIOS_DIR = $(PROTOCOL_DIR)/chibios
 | |
| 
 | |
| 
 | |
| SRC += $(CHIBIOS_DIR)/usb_main.c
 | |
| SRC += $(CHIBIOS_DIR)/main.c
 | |
| SRC += usb_descriptor.c
 | |
| SRC += $(CHIBIOS_DIR)/usb_driver.c
 | |
| 
 | |
| VPATH += $(TMK_PATH)/$(PROTOCOL_DIR)
 | |
| VPATH += $(TMK_PATH)/$(CHIBIOS_DIR)
 | |
| VPATH += $(TMK_PATH)/$(CHIBIOS_DIR)/lufa_utils
 | |
| 
 | |
| OPT_DEFS += -DFIXED_CONTROL_ENDPOINT_SIZE=64
 | |
| OPT_DEFS += -DFIXED_NUM_CONFIGURATIONS=1
 | |
| 
 | |
| ifeq ($(strip $(MIDI_ENABLE)), yes)
 | |
|   include $(TMK_PATH)/protocol/midi.mk
 | |
| endif
 | |
| 
 |