rules.mk 1.2 KB

1234567891011121314151617181920212223242526
  1. SPLIT_KEYBOARD = yes
  2. LTO_ENABLE = yes # if firmware size over limit, try this option
  3. # Helix Spacific Build Options
  4. # you can uncomment and edit follows 7 Variables
  5. # jp: 以下の7つの変数を必要に応じて編集し、コメントアウトをはずします。
  6. # HELIX_ROWS = 5 # Helix Rows is 4 or 5
  7. # OLED_ENABLE = no # OLED_ENABLE
  8. # LOCAL_GLCDFONT = no # use each keymaps "helixfont.h" insted of "common/glcdfont.c"
  9. # LED_BACK_ENABLE = no # LED backlight (Enable WS2812 RGB underlight.)
  10. # LED_UNDERGLOW_ENABLE = no # LED underglow (Enable WS2812 RGB underlight.)
  11. # LED_ANIMATIONS = yes # LED animations
  12. # IOS_DEVICE_ENABLE = no # connect to IOS device (iPad,iPhone)
  13. # OLED_ENABLE が yes のとき
  14. # OLED_SELECT が core ならば QMK 標準の oled_dirver.c を使用します。
  15. # OLED_SELECT が core 以外ならば従来どおり helix/local_drivers/ssd1306.c を使用します。
  16. # If OLED_ENABLE is 'yes'
  17. # If OLED_SELECT is 'core', use QMK standard oled_dirver.c.
  18. # If OLED_SELECT is other than 'core', use helix/local_drivers/ssd1306.c.
  19. OLED_SELECT = core
  20. ifeq ($(strip $(OLED_ENABLE)), yes)
  21. SRC += oled_display.c
  22. endif