From 9801227da93abb418d12804d2ceb56ce04d90c1d Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Wed, 15 Sep 2021 17:05:36 +0200 Subject: uart: Generate instances from platform spec. --- uart/SConscript | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 uart/SConscript (limited to 'uart/SConscript') diff --git a/uart/SConscript b/uart/SConscript new file mode 100644 index 0000000..dcf6d3e --- /dev/null +++ b/uart/SConscript @@ -0,0 +1,21 @@ +Import('env') + +headers = [] +instances = [] +sources = [] +aliases = {} + +periph = env['PLATFORM_SPEC'].get('periph', {}) + +if 'stm32_uart' in periph: + headers.append('stm32_uart.h') + for name, data in periph['stm32_uart'].items(): + instances.append({ + 'type': 'STM32_UART_t' % data['type'], + 'name': name, + 'args': [data['offset']], + }) + +env.Jinja2('uart.h', '../templates/periph_instances.h.j2', headers = headers, instances = instances, aliases = aliases) + +Return('sources') -- cgit v1.2.3