logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

rules.mk (1137B)


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