Fix incorrect g_led_config generation (#18431)

master
Ryan 3 years ago committed by GitHub
parent 89a1374ef4
commit 591701cdf9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      lib/python/qmk/info.py

@ -613,11 +613,15 @@ def _extract_led_config(info_data, keyboard):
cols = info_data['matrix_size']['cols'] cols = info_data['matrix_size']['cols']
rows = info_data['matrix_size']['rows'] rows = info_data['matrix_size']['rows']
# Assume what feature owns g_led_config # Determine what feature owns g_led_config
features = info_data.get("features", {})
feature = None
if features.get("rgb_matrix", False):
feature = "rgb_matrix" feature = "rgb_matrix"
if info_data.get("features", {}).get("led_matrix", False): elif features.get("led_matrix", False):
feature = "led_matrix" feature = "led_matrix"
if feature:
# Process # Process
for file in find_keyboard_c(keyboard): for file in find_keyboard_c(keyboard):
try: try:

Loading…
Cancel
Save