EcoSteno-Firmware/keyboards/noll/ecosteno/rules.mk
afiqzudinhadi 38a9772364 feat: report key matrix and layer over raw HID for keyglance
Enable RAW_ENABLE and send a report on every physical key event (row,
col, pressed) and on layer changes (active layer) via raw_hid_send, so
the keyglance overlay can highlight the exact physical keys pressed —
including while in steno mode, where the steno protocol otherwise hides
which physical keys are down.
  - rules.mk: RAW_ENABLE = yes
  - keymap.c: raw_hid_receive stub, kg_send_key/kg_send_layer helpers,
process_record_user reports real matrix keys (combos/virtual filtered),
layer_state_set_user reports the highest active layer
2026-06-03 22:55:00 +08:00

23 lines
663 B
Makefile

# MCU name
MCU = STM32F103
# Bootloader selection
BOOTLOADER = stm32duino
# project specific files
SRC = keyboard.c
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration
MOUSEKEY_ENABLE = no # Mouse keys
EXTRAKEY_ENABLE = no # Audio control and System control
CONSOLE_ENABLE = yes # Console for debug
COMMAND_ENABLE = yes # Commands for debug and configuration
SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
NKRO_ENABLE = yes # USB Nkey Rollover
COMBO_ENABLE = yes # Enable Key Combos
STENO_ENABLE = yes # Stenography keys
STENO_PROTOCOL = geminipr # Can be geminipr or txbolt
MOUSEKEY_ENABLE = no # Mouse keys
RAW_ENABLE = yes