error handler init, internal watchdog add

This commit is contained in:
2022-06-22 14:54:21 +02:00
parent 17ccf56463
commit 96b27b020b
15 changed files with 819 additions and 27 deletions

View File

@ -38,13 +38,14 @@ BUILD_DIR = build
C_SOURCES = \
Core/Application/INIT_Initialization.c \
Core/Application/MAIN_MainApplication.c \
Core/Application/PECO_PeltierController.c \
Core/Application/VARH_VariableHandler.c \
Core/Drivers/ADCD_AdcDriver.c \
Core/Drivers/ANPI_AnalogPortsIn.c \
Core/Drivers/ANPO_AnalogPortsOut.c \
Core/Drivers/CAND_CanDriver.c \
Core/Drivers/DIPO_DigitalPorts.c \
Core/Drivers/PECO_PeltierController.c \
Core/Drivers/ERRH_ErrorHandler.c \
Core/Drivers/SPID_SpiDriver.c \
Core/Drivers/TEMP_Temperature.c \
Core/Drivers/USFL_UserFlash.c \
@ -73,6 +74,7 @@ Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_flash_ramfunc.c \
Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_gpio.c \
Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_i2c.c \
Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_i2c_ex.c \
Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_iwdg.c \
Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pwr.c \
Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_pwr_ex.c \
Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_hal_rcc.c \