blob: ed680ea910f151f527e7d1e293f0ab5e1d7a9258 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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,
};
|