From a604d14cd7cbf06682be50e734692e23ed90a44e Mon Sep 17 00:00:00 2001 From: Emmanuel Feller Date: Wed, 28 Jun 2023 12:44:23 +0200 Subject: [PATCH] correct include path to be able to build on macosx --- inc/STM32LowLevelTimer.h | 2 +- source/codal_target_hal.cpp | 2 +- source/drivers/BlueNRG/BLEDevice_Component.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/inc/STM32LowLevelTimer.h b/inc/STM32LowLevelTimer.h index 8e9de7051..421f8e665 100644 --- a/inc/STM32LowLevelTimer.h +++ b/inc/STM32LowLevelTimer.h @@ -2,7 +2,7 @@ #include "LowLevelTimer.h" #include "stm32yyxx_hal_conf.h" -#include "timer.h" +#include "codal-stm32/source/stm32/timer.h" #define STM_LOW_LEVEL_TIMER_STATUS_ENABLED 0x02 diff --git a/source/codal_target_hal.cpp b/source/codal_target_hal.cpp index 7e715dbb9..dbbb4f84c 100644 --- a/source/codal_target_hal.cpp +++ b/source/codal_target_hal.cpp @@ -3,7 +3,7 @@ #include "CodalCompat.h" #include "CodalDmesg.h" #include "STM32InterruptHandlers.h" -#include "Timer.h" +#include "codal-core/inc/driver-models/Timer.h" #include "board.h" #include "stm32yyxx_ll_pwr.h" #include "stm32yyxx_ll_rcc.h" diff --git a/source/drivers/BlueNRG/BLEDevice_Component.cpp b/source/drivers/BlueNRG/BLEDevice_Component.cpp index 65ff2986f..0e5d9f608 100644 --- a/source/drivers/BlueNRG/BLEDevice_Component.cpp +++ b/source/drivers/BlueNRG/BLEDevice_Component.cpp @@ -1,7 +1,7 @@ #include "BLEDevice_Component.h" #include "CodalFiber.h" -#include "Timer.h" +#include "codal-core/inc/driver-models/Timer.h" using namespace codal;