Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: get_config.py
- Revision:
- 13:ab47a20b66f0
- Parent:
- 9:2d27d77ada5c
- Child:
- 22:9e85236d8716
--- a/get_config.py Tue Jun 14 11:33:06 2016 +0100
+++ b/get_config.py Thu Jul 14 20:21:19 2016 +0100
@@ -62,7 +62,7 @@
options.prefix = options.prefix or [""]
try:
- params, macros = get_config(options.source_dir, target, toolchain)
+ params, macros, features = get_config(options.source_dir, target, toolchain)
if not params and not macros:
print "No configuration data available."
_exit(0)
@@ -79,7 +79,7 @@
print "Macros"
print "------"
if macros:
- print 'Defined with "macros":', macros
+ print 'Defined with "macros":', Config.config_macros_to_macros(macros)
print "Generated from configuration parameters:", Config.parameters_to_macros(params)
except KeyboardInterrupt, e:
