Skip to content

Commit eaa4ee4

Browse files
author
Jimmy Brisson
committed
Correct usage of get_config
1 parent c225f2c commit eaa4ee4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/get_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
options.prefix = options.prefix or [""]
5757

5858
try:
59-
params, macros, features = get_config(
59+
params, macros, features, _ = get_config(
6060
options.source_dir,
6161
target,
6262
options.tool[0] if options.tool else None,

tools/test_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2245,7 +2245,7 @@ def build_tests(tests, base_source_paths, build_path, target, toolchain_name,
22452245
else:
22462246
target_name = target
22472247
target = TARGET_MAP[target_name]
2248-
cfg, _, _ = get_config(base_source_paths, target, app_config=app_config)
2248+
cfg, _, _, _ = get_config(base_source_paths, target, app_config=app_config)
22492249

22502250
baud_rate = 9600
22512251
if 'platform.stdio-baud-rate' in cfg:

0 commit comments

Comments
 (0)