This updates my ErgoDox EZ layout to v1.3, which has the following noteworthy changes: * Added support for logging keys, by pressing `LEAD d`. Also included is a tool to generate a **heatmap** out of the logs. * The arrow and navigation keys were rearranged again, and now require an additional key being held to activate. See the **base layer** for an image that shows where arrows are. * The **experimental** layer has been redone, and is now called **ADORE**, and as such, can be enabled by `LEAD a` now. * Switching between Dvorak and ADORE is now persisted into EEPROM, and survives a reboot. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
		
			
				
	
	
		
			30 lines
		
	
	
		
			677 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			677 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| BOOTMAGIC_ENABLE=no
 | |
| COMMAND_ENABLE=no
 | |
| SLEEP_LED_ENABLE=no
 | |
| UNICODE_ENABLE=no
 | |
| FORCE_NKRO ?= yes
 | |
| DEBUG_ENABLE = no
 | |
| CONSOLE_ENABLE = yes
 | |
| TAP_DANCE_ENABLE = yes
 | |
| 
 | |
| ifeq (${FORCE_NKRO},yes)
 | |
| OPT_DEFS += -DFORCE_NKRO
 | |
| endif
 | |
| 
 | |
| KEYMAP_VERSION = $(shell \
 | |
|  if [ -d "${KEYMAP_PATH}/.git" ]; then \
 | |
|   cd "${KEYMAP_PATH}" && git describe --abbrev=6 --dirty --always --tags --match 'v*' 2>/dev/null; \
 | |
|  else echo QMK; fi)
 | |
| 
 | |
| KEYMAP_BRANCH = $(shell \
 | |
|  if [ -d "${KEYMAP_PATH}/.git" ]; then \
 | |
|   cd "${KEYMAP_PATH}"; \
 | |
|  fi; \
 | |
|  git rev-parse --abbrev-ref HEAD 2>/dev/null)
 | |
| 
 | |
| OPT_DEFS += -DKEYMAP_VERSION=\"$(KEYMAP_VERSION)\\\#$(KEYMAP_BRANCH)\"
 | |
| 
 | |
| ifndef QUANTUM_DIR
 | |
| 	include ../../../../Makefile
 | |
| endif
 |