You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

152 lines
3.7 KiB

2020 November 28 Breaking Changes Update (#11053) * Branch point for 2020 November 28 Breaking Change * Remove matrix_col_t to allow MATRIX_ROWS > 32 (#10183) * Add support for soft serial to ATmega32U2 (#10204) * Change MIDI velocity implementation to allow direct control of velocity value (#9940) * Add ability to build a subset of all keyboards based on platform. * Actually use eeprom_driver_init(). * Make bootloader_jump weak for ChibiOS. (#10417) * Joystick 16-bit support (#10439) * Per-encoder resolutions (#10259) * Share button state from mousekey to pointing_device (#10179) * Add hotfix for chibios keyboards not wake (#10088) * Add advanced/efficient RGB Matrix Indicators (#8564) * Naming change. * Support for STM32 GPIOF,G,H,I,J,K (#10206) * Add milc as a dependency and remove the installed milc (#10563) * ChibiOS upgrade: early init conversions (#10214) * ChibiOS upgrade: configuration file migrator (#9952) * Haptic and solenoid cleanup (#9700) * XD75 cleanup (#10524) * OLED display update interval support (#10388) * Add definition based on currently-selected serial driver. (#10716) * New feature: Retro Tapping per key (#10622) * Allow for modification of output RGB values when using rgblight/rgb_matrix. (#10638) * Add housekeeping task callbacks so that keyboards/keymaps are capable of executing code for each main loop iteration. (#10530) * Rescale both ChibiOS and AVR backlighting. * Reduce Helix keyboard build variation (#8669) * Minor change to behavior allowing display updates to continue between task ticks (#10750) * Some GPIO manipulations in matrix.c change to atomic. (#10491) * qmk cformat (#10767) * [Keyboard] Update the Speedo firmware for v3.0 (#10657) * Maartenwut/Maarten namechange to evyd13/Evy (#10274) * [quantum] combine repeated lines of code (#10837) * Add step sequencer feature (#9703) * aeboards/ext65 refactor (#10820) * Refactor xelus/dawn60 for Rev2 later (#10584) * add DEBUG_MATRIX_SCAN_RATE_ENABLE to common_features.mk (#10824) * [Core] Added `add_oneshot_mods` & `del_oneshot_mods` (#10549) * update chibios os usb for the otg driver (#8893) * Remove HD44780 References, Part 4 (#10735) * [Keyboard] Add Valor FRL TKL (+refactor) (#10512) * Fix cursor position bug in oled_write_raw functions (#10800) * Fixup version.h writing when using SKIP_VERSION=yes (#10972) * Allow for certain code in the codebase assuming length of string. (#10974) * Add AT90USB support for serial.c (#10706) * Auto shift: support repeats and early registration (#9826) * Rename ledmatrix.h to match .c file (#7949) * Split RGB_MATRIX_ENABLE into _ENABLE and _DRIVER (#10231) * Split LED_MATRIX_ENABLE into _ENABLE and _DRIVER (#10840) * Merge point for 2020 Nov 28 Breaking Change
3 years ago
  1. BUILD_OPTION_NAMES = \
  2. BOOTMAGIC_ENABLE \
  3. MOUSEKEY_ENABLE \
  4. EXTRAKEY_ENABLE \
  5. CONSOLE_ENABLE \
  6. COMMAND_ENABLE \
  7. NKRO_ENABLE \
  8. TERMINAL_ENABLE \
  9. CUSTOM_MATRIX \
  10. DEBOUNCE_TYPE \
  11. SPLIT_KEYBOARD \
  12. DYNAMIC_KEYMAP_ENABLE \
  13. USB_HID_ENABLE \
  14. VIA_ENABLE
  15. HARDWARE_OPTION_NAMES = \
  16. SLEEP_LED_ENABLE \
  17. BACKLIGHT_ENABLE \
  18. BACKLIGHT_DRIVER \
  19. RGBLIGHT_ENABLE \
  20. RGBLIGHT_CUSTOM_DRIVER \
  21. RGB_MATRIX_ENABLE \
  22. RGB_MATRIX_DRIVER \
  23. SERIAL_LINK_ENABLE \
  24. CIE1931_CURVE \
  25. MIDI_ENABLE \
  26. BLUETOOTH_ENABLE \
  27. AUDIO_ENABLE \
  28. HD44780_ENABLE \
  29. ENCODER_ENABLE \
  30. LCD_ENABLE \
  31. LED_TABLES \
  32. POINTING_DEVICE_ENABLE \
  33. VISUALIZER_ENABLE \
  34. DIP_SWITCH_ENABLE
  35. OTHER_OPTION_NAMES = \
  36. UNICODE_ENABLE \
  37. UCIS_ENABLE \
  38. UNICODEMAP_ENABLE \
  39. UNICODE_COMMON \
  40. API_SYSEX_ENABLE \
  41. AUTO_SHIFT_ENABLE \
  42. AUTO_SHIFT_MODIFIERS \
  43. COMBO_ENABLE \
  44. KEY_LOCK_ENABLE \
  45. KEY_OVERRIDE_ENABLE \
  46. LEADER_ENABLE \
  47. PRINTING_ENABLE \
  48. STENO_ENABLE \
  49. TAP_DANCE_ENABLE \
  50. VIRTSER_ENABLE \
  51. OLED_ENABLE \
  52. OLED_DRIVER \
  53. LED_BACK_ENABLE \
  54. LED_UNDERGLOW_ENABLE \
  55. LED_ANIMATIONS \
  56. IOS_DEVICE_ENABLE \
  57. HELIX ZINC \
  58. ADAFRUIT_BLE_ENABLE \
  59. AUTOLOG_ENABLE \
  60. DEBUG_ENABLE \
  61. ENCODER_ENABLE_CUSTOM \
  62. GERMAN_ENABLE \
  63. HAPTIC_ENABLE \
  64. HHKB_RN42_ENABLE \
  65. ISSI_ENABLE \
  66. KEYBOARD_LOCK_ENABLE \
  67. KEYLOGGER_ENABLE \
  68. LCD_BACKLIGHT_ENABLE \
  69. MACROS_ENABLED \
  70. PS2_MOUSE_ENABLE \
  71. RAW_ENABLE \
  72. SWAP_HANDS_ENABLE \
  73. RING_BUFFERED_6KRO_REPORT_ENABLE \
  74. WATCHDOG_ENABLE \
  75. XT_ENABLE \
  76. ERGOINU \
  77. NO_USB_STARTUP_CHECK \
  78. DISABLE_PROMICRO_LEDs \
  79. MITOSIS_DATAGROK_BOTTOMSPACE \
  80. MITOSIS_DATAGROK_SLOWUART \
  81. RGB_MATRIX_KEYPRESSES \
  82. LED_MIRRORED \
  83. RGBLIGHT_FULL_POWER \
  84. LTO_ENABLE
  85. define NAME_ECHO
  86. @printf " %-30s = %-16s # %s\\n" "$1" "$($1)" "$(origin $1)"
  87. endef
  88. define YAML_NAME_ECHO
  89. @echo ' $1 : "$(strip $($1))"'
  90. endef
  91. .PHONY: show_build_options0 show_build_options
  92. show_build_options0:
  93. @echo " KEYBOARD = $(KEYBOARD)"
  94. @echo " KEYMAP = $(KEYMAP)"
  95. @echo " MCU = $(MCU)"
  96. @echo " MCU_SERIES = $(MCU_SERIES)"
  97. @echo " PLATFORM = $(PLATFORM)"
  98. @echo " BOOTLOADER = $(BOOTLOADER)"
  99. @echo " FIRMWARE_FORMAT = $(FIRMWARE_FORMAT)"
  100. @echo
  101. @echo "Build Options:"
  102. $(foreach A_OPTION_NAME,$(sort $(BUILD_OPTION_NAMES)),\
  103. $(call NAME_ECHO,$(A_OPTION_NAME)))
  104. show_build_options: show_build_options0
  105. @echo
  106. @echo "If you want to know more, please try 'show_all_features' or 'show_full_features'"
  107. @echo
  108. .PHONY: show_all_features
  109. show_all_features: show_build_options0
  110. @echo
  111. @echo "Hardware Options:"
  112. $(foreach A_OPTION_NAME,$(sort $(HARDWARE_OPTION_NAMES)),\
  113. $(if $($(A_OPTION_NAME)),$(call NAME_ECHO,$(A_OPTION_NAME))))
  114. @echo
  115. @echo "Other Options:"
  116. $(foreach A_OPTION_NAME,$(sort $(OTHER_OPTION_NAMES)),\
  117. $(if $($(A_OPTION_NAME)),$(call NAME_ECHO,$(A_OPTION_NAME))))
  118. .PHONY: show_full_features
  119. show_full_features: show_build_options0
  120. @echo
  121. @echo "Hardware Options:"
  122. $(foreach A_OPTION_NAME,$(sort $(HARDWARE_OPTION_NAMES)),\
  123. $(call NAME_ECHO,$(A_OPTION_NAME)))
  124. @echo
  125. @echo "Other Options:"
  126. $(foreach A_OPTION_NAME,$(sort $(OTHER_OPTION_NAMES)),\
  127. $(call NAME_ECHO,$(A_OPTION_NAME)))
  128. .PHONY: yaml_build_options
  129. yaml_build_options:
  130. @echo '- KEYBOARD : "$(KEYBOARD)"'
  131. @echo ' KEYMAP : "$(KEYMAP)"'
  132. @echo ' MCU : "$(MCU)"'
  133. @echo ' MCU_SERIES : "$(MCU_SERIES)"'
  134. @echo ' PLATFORM : "$(PLATFORM)"'
  135. @echo ' FIRMWARE_FORMAT : "$(FIRMWARE_FORMAT)"'
  136. $(foreach A_OPTION_NAME,$(sort $(BUILD_OPTION_NAMES)),\
  137. $(call YAML_NAME_ECHO,$(A_OPTION_NAME)))
  138. $(foreach A_OPTION_NAME,$(sort $(HARDWARE_OPTION_NAMES)),\
  139. $(if $($(A_OPTION_NAME)),$(call YAML_NAME_ECHO,$(A_OPTION_NAME))))
  140. $(foreach A_OPTION_NAME,$(sort $(OTHER_OPTION_NAMES)),\
  141. $(if $($(A_OPTION_NAME)),$(call YAML_NAME_ECHO,$(A_OPTION_NAME))))