summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2023-06-09 06:08:02 +1000
committerGitHub <noreply@github.com>2023-06-08 21:08:02 +0100
commita9f677b5186f1b998dd987a4a1a2ae79eb3cf72e (patch)
tree0bc17a6c504df7ffec58acc6db1cda2429dd5498 /lib
parent4c6c387724c5fb17e0cd01784565bedb059fd3ad (diff)
Slightly refine `g_led_config` parsing (#21170)
Diffstat (limited to 'lib')
-rw-r--r--lib/python/qmk/c_parse.py17
1 files changed, 11 insertions, 6 deletions
diff --git a/lib/python/qmk/c_parse.py b/lib/python/qmk/c_parse.py
index 7dd464bd34..08d23cf5ba 100644
--- a/lib/python/qmk/c_parse.py
+++ b/lib/python/qmk/c_parse.py
@@ -241,19 +241,24 @@ def _parse_led_config(file, matrix_cols, matrix_rows):
position_raw = []
flags = []
- found_led_config = False
+ found_led_config_t = False
+ found_g_led_config = False
bracket_count = 0
section = 0
current_row_index = 0
current_row = []
for _type, value in lex(_preprocess_c_file(file), CLexer()):
- # Assume g_led_config..stuff..;
- if value == 'g_led_config':
- found_led_config = True
+ if not found_g_led_config:
+ # Check for type
+ if value == 'led_config_t':
+ found_led_config_t = True
+ # Type found, now check for name
+ elif found_led_config_t and value == 'g_led_config':
+ found_g_led_config = True
elif value == ';':
- found_led_config = False
- elif found_led_config:
+ found_g_led_config = False
+ else:
# Assume bracket count hints to section of config we are within
if value == '{':
bracket_count += 1