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.

154 lines
3.8 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. CUSTOM_MATRIX \
  9. DEBOUNCE_TYPE \
  10. SPLIT_KEYBOARD \
  11. DYNAMIC_KEYMAP_ENABLE \
  12. USB_HID_ENABLE \
  13. VIA_ENABLE
  14. HARDWARE_OPTION_NAMES = \
  15. SLEEP_LED_ENABLE \
  16. BACKLIGHT_ENABLE \
  17. BACKLIGHT_DRIVER \
  18. RGBLIGHT_ENABLE \
  19. RGBLIGHT_CUSTOM_DRIVER \
  20. RGB_MATRIX_ENABLE \
  21. RGB_MATRIX_DRIVER \
  22. CIE1931_CURVE \
  23. MIDI_ENABLE \
  24. BLUETOOTH_ENABLE \
  25. BLUETOOTH_DRIVER \
  26. AUDIO_ENABLE \
  27. HD44780_ENABLE \
  28. ENCODER_ENABLE \
  29. LED_TABLES \
  30. POINTING_DEVICE_ENABLE \
  31. DIP_SWITCH_ENABLE
  32. OTHER_OPTION_NAMES = \
  33. UNICODE_ENABLE \
  34. UCIS_ENABLE \
  35. UNICODEMAP_ENABLE \
  36. UNICODE_COMMON \
  37. AUTO_SHIFT_ENABLE \
  38. AUTO_SHIFT_MODIFIERS \
  39. DYNAMIC_TAPPING_TERM_ENABLE \
  40. COMBO_ENABLE \
  41. KEY_LOCK_ENABLE \
  42. KEY_OVERRIDE_ENABLE \
  43. LEADER_ENABLE \
  44. STENO_ENABLE \
  45. STENO_PROTOCOL \
  46. TAP_DANCE_ENABLE \
  47. VIRTSER_ENABLE \
  48. OLED_ENABLE \
  49. OLED_DRIVER \
  50. LED_BACK_ENABLE \
  51. LED_UNDERGLOW_ENABLE \
  52. LED_ANIMATIONS \
  53. IOS_DEVICE_ENABLE \
  54. HELIX ZINC \
  55. AUTOLOG_ENABLE \
  56. DEBUG_ENABLE \
  57. ENCODER_MAP_ENABLE \
  58. ENCODER_ENABLE_CUSTOM \
  59. GERMAN_ENABLE \
  60. HAPTIC_ENABLE \
  61. HHKB_RN42_ENABLE \
  62. ISSI_ENABLE \
  63. KEYLOGGER_ENABLE \
  64. LCD_BACKLIGHT_ENABLE \
  65. MACROS_ENABLED \
  66. PS2_ENABLE \
  67. PS2_MOUSE_ENABLE \
  68. PS2_DRIVER \
  69. RAW_ENABLE \
  70. SWAP_HANDS_ENABLE \
  71. RING_BUFFERED_6KRO_REPORT_ENABLE \
  72. WATCHDOG_ENABLE \
  73. ERGOINU \
  74. NO_USB_STARTUP_CHECK \
  75. DISABLE_PROMICRO_LEDs \
  76. MITOSIS_DATAGROK_BOTTOMSPACE \
  77. MITOSIS_DATAGROK_SLOWUART \
  78. RGB_MATRIX_KEYPRESSES \
  79. LED_MIRRORED \
  80. RGBLIGHT_FULL_POWER \
  81. LTO_ENABLE \
  82. PROGRAMMABLE_BUTTON_ENABLE \
  83. SECURE_ENABLE \
  84. CAPS_WORD_ENABLE \
  85. AUTOCORRECT_ENABLE \
  86. TRI_LAYER_ENABLE
  87. define NAME_ECHO
  88. @printf " %-30s = %-16s # %s\\n" "$1" "$($1)" "$(origin $1)"
  89. endef
  90. define YAML_NAME_ECHO
  91. @echo ' $1 : "$(strip $($1))"'
  92. endef
  93. .PHONY: show_build_options0 show_build_options
  94. show_build_options0:
  95. @echo " KEYBOARD = $(KEYBOARD)"
  96. @echo " KEYMAP = $(KEYMAP)"
  97. @echo " MCU = $(MCU)"
  98. @echo " MCU_SERIES = $(MCU_SERIES)"
  99. @echo " PLATFORM = $(PLATFORM)"
  100. @echo " BOOTLOADER = $(BOOTLOADER)"
  101. @echo " FIRMWARE_FORMAT = $(FIRMWARE_FORMAT)"
  102. @echo
  103. @echo "Build Options:"
  104. $(foreach A_OPTION_NAME,$(sort $(BUILD_OPTION_NAMES)),\
  105. $(call NAME_ECHO,$(A_OPTION_NAME)))
  106. show_build_options: show_build_options0
  107. @echo
  108. @echo "If you want to know more, please try 'show_all_features' or 'show_full_features'"
  109. @echo
  110. .PHONY: show_all_features
  111. show_all_features: show_build_options0
  112. @echo
  113. @echo "Hardware Options:"
  114. $(foreach A_OPTION_NAME,$(sort $(HARDWARE_OPTION_NAMES)),\
  115. $(if $($(A_OPTION_NAME)),$(call NAME_ECHO,$(A_OPTION_NAME))))
  116. @echo
  117. @echo "Other Options:"
  118. $(foreach A_OPTION_NAME,$(sort $(OTHER_OPTION_NAMES)),\
  119. $(if $($(A_OPTION_NAME)),$(call NAME_ECHO,$(A_OPTION_NAME))))
  120. .PHONY: show_full_features
  121. show_full_features: show_build_options0
  122. @echo
  123. @echo "Hardware Options:"
  124. $(foreach A_OPTION_NAME,$(sort $(HARDWARE_OPTION_NAMES)),\
  125. $(call NAME_ECHO,$(A_OPTION_NAME)))
  126. @echo
  127. @echo "Other Options:"
  128. $(foreach A_OPTION_NAME,$(sort $(OTHER_OPTION_NAMES)),\
  129. $(call NAME_ECHO,$(A_OPTION_NAME)))
  130. .PHONY: yaml_build_options
  131. yaml_build_options:
  132. @echo '- KEYBOARD : "$(KEYBOARD)"'
  133. @echo ' KEYMAP : "$(KEYMAP)"'
  134. @echo ' MCU : "$(MCU)"'
  135. @echo ' MCU_SERIES : "$(MCU_SERIES)"'
  136. @echo ' PLATFORM : "$(PLATFORM)"'
  137. @echo ' FIRMWARE_FORMAT : "$(FIRMWARE_FORMAT)"'
  138. $(foreach A_OPTION_NAME,$(sort $(BUILD_OPTION_NAMES)),\
  139. $(call YAML_NAME_ECHO,$(A_OPTION_NAME)))
  140. $(foreach A_OPTION_NAME,$(sort $(HARDWARE_OPTION_NAMES)),\
  141. $(if $($(A_OPTION_NAME)),$(call YAML_NAME_ECHO,$(A_OPTION_NAME))))
  142. $(foreach A_OPTION_NAME,$(sort $(OTHER_OPTION_NAMES)),\
  143. $(if $($(A_OPTION_NAME)),$(call YAML_NAME_ECHO,$(A_OPTION_NAME))))