From 81fe3a50cd3bd47d3a0313ead02241930fb62b52 Mon Sep 17 00:00:00 2001 From: Anton Mukhin Date: Tue, 25 Jun 2024 15:56:46 +0300 Subject: [PATCH] Working on peripherals --- .cproject | 5 +- .mxproject | 4 +- Core/Inc/main.h | 2 + Core/Inc/stm32f1xx_hal_conf.h | 4 +- Core/Inc/stm32f1xx_it.h | 3 + Core/Src/main.c | 90 +- Core/Src/stm32f1xx_hal_msp.c | 115 + Core/Src/stm32f1xx_it.c | 47 +- .../Inc/stm32f1xx_hal_uart.h | 915 ++++ .../Inc/stm32f1xx_ll_usart.h | 2569 +++++++++++ .../Src/stm32f1xx_hal_uart.c | 3756 +++++++++++++++++ RS485_BSV.ioc | 96 +- 12 files changed, 7577 insertions(+), 29 deletions(-) create mode 100644 Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h create mode 100644 Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_ll_usart.h create mode 100644 Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_uart.c diff --git a/.cproject b/.cproject index 42bf4c6..787170b 100644 --- a/.cproject +++ b/.cproject @@ -22,7 +22,7 @@