post_rules.mk 315 B

123456789101112131415161718
  1. ifeq ($(strip $(HHKB_RN42_ENABLE)), yes)
  2. OPT_DEFS += -DHHKB_RN42_ENABLE
  3. # Support for the RN42 Bluetooth module. This is the BT module in Hasu's BT
  4. # HHKB Alt controller.
  5. RN42_DIR = keyboards/hhkb/rn42
  6. SRC += serial_uart.c \
  7. suart.S \
  8. rn42.c \
  9. rn42_task.c \
  10. battery.c \
  11. main.c
  12. VPATH += $(RN42_DIR)
  13. endif