diff options
author | Vegard Storheil Eriksen <zyp@jvnv.net> | 2022-07-28 23:13:15 +0200 |
---|---|---|
committer | Vegard Storheil Eriksen <zyp@jvnv.net> | 2022-07-28 23:13:15 +0200 |
commit | 104c965101dfa6b9122184209cc00d0f18e7dbbe (patch) | |
tree | 3ec4fe7e03cae75649fdb38aa0df4c93eb1bfb2f /adc/SConscript | |
parent | a3a82c502e045c4e6de37f7ead1f3b9fcecd37b9 (diff) |
stm32_adc: Rename common blocks to ADC12 and ADC345 respectively.
Diffstat (limited to 'adc/SConscript')
-rw-r--r-- | adc/SConscript | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/adc/SConscript b/adc/SConscript index ae2fd2b..e008d25 100644 --- a/adc/SConscript +++ b/adc/SConscript @@ -11,19 +11,19 @@ periph = env['PLATFORM_SPEC'].get('periph', {}) if 'stm32_adc' in periph: headers.append('stm32_adc.h') for name, data in periph['stm32_adc'].items(): - if name.find("COMMON") > 0: - instances.append({ - 'type': 'STM32_ADC_COMMON_t<STM32_ADC_COMMON_reg_%s_t>' % data['type'], - 'name': name, - 'args': [data['offset']], - }) - else: - instances.append({ - 'type': 'STM32_ADC_t<STM32_ADC_reg_%s_t>' % data['type'], - 'name': name, - 'args': [data['offset']], - }) + instances.append({ + 'type': 'STM32_ADC_t<STM32_ADC_reg_%s_t>' % data['type'], + 'name': name, + 'args': [data['offset']], + }) +if 'stm32_adc_common' in periph: + for name, data in periph['stm32_adc_common'].items(): + instances.append({ + 'type': 'STM32_ADC_COMMON_t<STM32_ADC_COMMON_reg_%s_t>' % data['type'], + 'name': name, + 'args': [data['offset']], + }) env.Jinja2('adc.h', '../templates/periph_instances.h.j2', headers = headers, instances = instances, aliases = aliases, type_aliases = type_aliases) |