summaryrefslogtreecommitdiff
path: root/uart/uart.h
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2021-09-15 17:05:36 +0200
committerVegard Storheil Eriksen <zyp@jvnv.net>2021-09-15 17:05:36 +0200
commit9801227da93abb418d12804d2ceb56ce04d90c1d (patch)
tree7927fbc98a8ff870a34315d54cf8ad5a38fbb4b7 /uart/uart.h
parentcb486529482ef66902fd15bbd6e3a3b12ff4fa4b (diff)
uart: Generate instances from platform spec.
Diffstat (limited to 'uart/uart.h')
-rw-r--r--uart/uart.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/uart/uart.h b/uart/uart.h
new file mode 100644
index 0000000..ed680ea
--- /dev/null
+++ b/uart/uart.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include "stm32_uart.h"
+
+constexpr STM32_UART_t<STM32_UART_reg_v1_t> USART1{
+ 0x40011000,
+};
+constexpr STM32_UART_t<STM32_UART_reg_v1_t> USART2{
+ 0x40004400,
+};
+
+