aboutsummaryrefslogtreecommitdiffstats
path: root/tools/update_configs.py
diff options
context:
space:
mode:
authorFabien Poussin <fabien.poussin@gmail.com>2018-03-14 20:15:13 +0100
committerFabien Poussin <fabien.poussin@gmail.com>2018-03-14 20:15:13 +0100
commit424c7a2717fb6b2a847cec5c0060e3236f25e97f (patch)
treeb41f66639a1bcafa9d8ddbf8feb800d8cd7ffbbd /tools/update_configs.py
parent1bfe2ef9f7f39d93174b1f62ac4b079aac2dea59 (diff)
downloadChibiOS-Contrib-424c7a2717fb6b2a847cec5c0060e3236f25e97f.tar.gz
ChibiOS-Contrib-424c7a2717fb6b2a847cec5c0060e3236f25e97f.tar.bz2
ChibiOS-Contrib-424c7a2717fb6b2a847cec5c0060e3236f25e97f.zip
Fixed most testhal examples for STM32, updated configs using script. Fixed deprecated MS2ST calls.
Diffstat (limited to 'tools/update_configs.py')
-rw-r--r--tools/update_configs.py68
1 files changed, 36 insertions, 32 deletions
diff --git a/tools/update_configs.py b/tools/update_configs.py
index 637429e..6bc69b9 100644
--- a/tools/update_configs.py
+++ b/tools/update_configs.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
# -*- coding: utf-8 -*-
__author__ = 'Fabien Poussin'
__version__ = '0.1'
@@ -16,7 +16,6 @@ parser.add_argument('-d', '--dst', default='..', type=str, help='ChibiOS-Contrib
def makefile(lines):
-
for l in range(len(lines)):
if 'CHIBIOS =' in lines[l]:
@@ -56,45 +55,50 @@ if __name__ == '__main__':
args = parser.parse_args()
sources = {}
- for family in os.scandir(args.src + '/testhal/STM32/'):
- if not family.name[0].isupper() or not family.is_dir():
- continue
+ for folder in ['testhal']:
- for test in os.scandir(family.path):
- try:
- sources[family.name] = {'makefile': None, 'halconf': None, 'mcuconf': None}
+ for family in os.scandir(args.src + '/{}/STM32/'.format(folder)):
+ if not family.name[0].isupper() or not family.is_dir():
+ continue
- with open(test.path + '/Makefile', 'r') as file:
- sources[family.name]['makefile'] = makefile(file.readlines())
+ for test in os.scandir(family.path):
+ try:
+ sources[family.name] = {'makefile': None, 'halconf': None, 'mcuconf': None}
- with open(test.path + '/halconf.h', 'r') as file:
- sources[family.name]['halconf'] = halconf(file.readlines())
+ with open(test.path + '/Makefile', 'r') as file:
+ sources[family.name]['makefile'] = makefile(file.readlines())
- with open(test.path + '/mcuconf.h', 'r') as file:
- sources[family.name]['mcuconf'] = mcuconf(file.readlines())
+ with open(test.path + '/halconf.h', 'r') as file:
+ sources[family.name]['halconf'] = halconf(file.readlines())
- except Exception as e:
- print(test.path, e)
- del sources[family.name]
- continue
+ with open(test.path + '/mcuconf.h', 'r') as file:
+ sources[family.name]['mcuconf'] = mcuconf(file.readlines())
- break
+ except Exception as e:
+ print(test.path, e)
+ del sources[family.name]
+ continue
- print(sources.keys())
+ break
+
+ for family in os.scandir(args.dst + '/{}/STM32/'.format(folder)):
+ if not family.name[0].isupper() or not family.is_dir():
+ continue
- for family in os.scandir(args.dst + '/testhal/STM32/'):
- if not family.name[0].isupper() or not family.is_dir():
- continue
+ for test in os.scandir(family.path):
+ copy('templates/halconf_community.h', test.path)
+ copy('templates/mcuconf_community.h', test.path)
- for test in os.scandir(family.path):
- copy('templates/halconf_community.h', test.path)
- copy('templates/mcuconf_community.h', test.path)
+ try:
+ with open(test.path + '/Makefile', 'w') as file:
+ file.write(sources[family.name]['makefile'])
- with open(test.path + '/Makefile', 'w') as file:
- file.write(sources[family.name]['makefile'])
+ with open(test.path + '/halconf.h', 'w') as file:
+ file.write(sources[family.name]['halconf'])
- with open(test.path + '/halconf.h', 'w') as file:
- file.write(sources[family.name]['halconf'])
+ with open(test.path + '/mcuconf.h', 'w') as file:
+ file.write(sources[family.name]['mcuconf'])
- with open(test.path + '/mcuconf.h', 'w') as file:
- file.write(sources[family.name]['mcuconf'])
+ print('updated', test.path)
+ except KeyError as e:
+ print('Missing family data', e)