diff options
-rw-r--r-- | .gitignore | 14 | ||||
-rw-r--r-- | uart/uart.h | 12 |
2 files changed, 13 insertions, 13 deletions
@@ -1,4 +1,16 @@ *.o *.swp *.pyc -__pycache__
\ No newline at end of file +__pycache__ +docs + +# Generated source files: +ld_scripts/generated.ld +interrupt/interrupt.h +interrupt/interrupt_enums.h +interrupt/default_handlers.cpp +interrupt/vectors_*.cpp +rcc/rcc.h +rcc/rcc_enums.h +usb/usb.h +uart/uart.h diff --git a/uart/uart.h b/uart/uart.h deleted file mode 100644 index ed680ea..0000000 --- a/uart/uart.h +++ /dev/null @@ -1,12 +0,0 @@ -#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, -}; - - |