From 89ced0fc1163addda0720b3709596d69e5c32f38 Mon Sep 17 00:00:00 2001 From: Anton Mukhin Date: Wed, 22 Nov 2023 10:43:10 +0300 Subject: [PATCH] Update HAL version, board description, version number to 10.0 --- .cproject | 8 +- .mxproject | 2 +- Core/Inc/board_logic.h | 2 +- Core/Inc/main.h | 1 + Core/Src/board_logic.c | 36 +- Core/Src/main.c | 8 +- Core/Src/stm32f0xx_hal_msp.c | 2 +- Core/Src/stm32f0xx_it.c | 1 - .../Device/ST/STM32F0xx/Include/stm32f030x6.h | 32 +- .../Device/ST/STM32F0xx/Include/stm32f0xx.h | 28 +- .../ST/STM32F0xx/Include/system_stm32f0xx.h | 16 +- Drivers/CMSIS/Device/ST/STM32F0xx/LICENSE.txt | 6 + .../Inc/Legacy/stm32_hal_legacy.h | 599 ++- .../STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h | 21 +- .../Inc/stm32f0xx_hal_cortex.h | 12 +- .../Inc/stm32f0xx_hal_def.h | 15 +- .../Inc/stm32f0xx_hal_dma.h | 170 +- .../Inc/stm32f0xx_hal_dma_ex.h | 350 +- .../Inc/stm32f0xx_hal_exti.h | 12 +- .../Inc/stm32f0xx_hal_flash.h | 13 +- .../Inc/stm32f0xx_hal_flash_ex.h | 13 +- .../Inc/stm32f0xx_hal_gpio.h | 12 +- .../Inc/stm32f0xx_hal_gpio_ex.h | 21 +- .../Inc/stm32f0xx_hal_i2c.h | 28 +- .../Inc/stm32f0xx_hal_i2c_ex.h | 13 +- .../Inc/stm32f0xx_hal_pwr.h | 14 +- .../Inc/stm32f0xx_hal_pwr_ex.h | 14 +- .../Inc/stm32f0xx_hal_rcc.h | 15 +- .../Inc/stm32f0xx_hal_rcc_ex.h | 13 +- .../Inc/stm32f0xx_hal_tim.h | 124 +- .../Inc/stm32f0xx_hal_tim_ex.h | 31 +- .../Inc/stm32f0xx_hal_uart.h | 69 +- .../Inc/stm32f0xx_hal_uart_ex.h | 93 +- .../Inc/stm32f0xx_ll_bus.h | 842 ++++ .../Inc/stm32f0xx_ll_cortex.h | 318 ++ .../Inc/stm32f0xx_ll_crs.h | 780 ++++ .../Inc/stm32f0xx_ll_dma.h | 2234 +++++++++ .../Inc/stm32f0xx_ll_exti.h | 1014 +++++ .../Inc/stm32f0xx_ll_gpio.h | 938 ++++ .../Inc/stm32f0xx_ll_pwr.h | 549 +++ .../Inc/stm32f0xx_ll_rcc.h | 2258 ++++++++++ .../Inc/stm32f0xx_ll_system.h | 1851 ++++++++ .../Inc/stm32f0xx_ll_tim.h | 4005 +++++++++++++++++ .../Inc/stm32f0xx_ll_usart.h | 3849 ++++++++++++++++ .../Inc/stm32f0xx_ll_utils.h | 272 ++ Drivers/STM32F0xx_HAL_Driver/LICENSE.txt | 6 + .../STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.c | 33 +- .../Src/stm32f0xx_hal_cortex.c | 12 +- .../Src/stm32f0xx_hal_dma.c | 618 ++- .../Src/stm32f0xx_hal_exti.c | 26 +- .../Src/stm32f0xx_hal_flash.c | 13 +- .../Src/stm32f0xx_hal_flash_ex.c | 13 +- .../Src/stm32f0xx_hal_gpio.c | 63 +- .../Src/stm32f0xx_hal_i2c.c | 1078 +++-- .../Src/stm32f0xx_hal_i2c_ex.c | 25 +- .../Src/stm32f0xx_hal_pwr.c | 14 +- .../Src/stm32f0xx_hal_pwr_ex.c | 13 +- .../Src/stm32f0xx_hal_rcc.c | 21 +- .../Src/stm32f0xx_hal_rcc_ex.c | 13 +- .../Src/stm32f0xx_hal_tim.c | 144 +- .../Src/stm32f0xx_hal_tim_ex.c | 52 +- .../Src/stm32f0xx_hal_uart.c | 251 +- .../Src/stm32f0xx_hal_uart_ex.c | 65 +- Relay_RS485.ioc | 14 +- STM32F030K6TX_FLASH.ld | 4 +- 65 files changed, 21574 insertions(+), 1608 deletions(-) create mode 100644 Drivers/CMSIS/Device/ST/STM32F0xx/LICENSE.txt create mode 100644 Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h create mode 100644 Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h create mode 100644 Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h create mode 100644 Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h create mode 100644 Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h create mode 100644 Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h create mode 100644 Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h create mode 100644 Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h create mode 100644 Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h create mode 100644 Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_tim.h create mode 100644 Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_usart.h create mode 100644 Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h create mode 100644 Drivers/STM32F0xx_HAL_Driver/LICENSE.txt diff --git a/.cproject b/.cproject index a0ef035..948e589 100644 --- a/.cproject +++ b/.cproject @@ -21,8 +21,9 @@