diff --git a/Core/Inc/TMP1075.h b/Core/Inc/TMP1075.h index 1e9e680..d52088c 100644 --- a/Core/Inc/TMP1075.h +++ b/Core/Inc/TMP1075.h @@ -4,8 +4,6 @@ #include "can.h" #include "common_defs.h" #include "stm32f3xx_hal.h" -#include "stm32f3xx_hal_def.h" -#include "stm32f3xx_hal_i2c.h" #include extern uint32_t tmp1075_failed_sensors; diff --git a/Core/Src/TMP1075.c b/Core/Src/TMP1075.c index cf9a1e0..0d5f566 100644 --- a/Core/Src/TMP1075.c +++ b/Core/Src/TMP1075.c @@ -3,8 +3,6 @@ #include "can-halal.h" #include "errors.h" -#include "stm32f3xx_hal_def.h" -#include "stm32f3xx_hal_i2c.h" #define MAX_TEMP ((int16_t)(59 / 0.0625f)) #define MAX_FAILED_TEMP 12 //TODO: change value for compliance with the actual number of sensors diff --git a/Core/Src/main.c b/Core/Src/main.c index 669c751..2cd7160 100644 --- a/Core/Src/main.c +++ b/Core/Src/main.c @@ -29,7 +29,6 @@ #include "TMP1075.h" #include "errors.h" #include "stm32f3xx_hal.h" -#include "stm32f3xx_hal_gpio.h" /* USER CODE END Includes */ /* Private typedef -----------------------------------------------------------*/ diff --git a/STM32-for-VSCode.config.yaml b/STM32-for-VSCode.config.yaml index d854716..e4488d0 100644 --- a/STM32-for-VSCode.config.yaml +++ b/STM32-for-VSCode.config.yaml @@ -96,6 +96,7 @@ sourceFiles: - Src/** - Core/Src/** - Core/Lib/** + - Drivers/STM32F3xx_HAL_Driver/Src/** # When no makefile is present it will show a warning pop-up.