diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-05-12 08:39:25 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-05-12 08:39:25 +0000 |
commit | a3bb554a45935139872ffef23ea94bdbe2e928ec (patch) | |
tree | 7b4272cadc1c05098b2924ee1b52ab1ce8aa63e4 /os/hal/ports/STM32/STM32F3xx | |
parent | 7b2139850539c3032956b44fa94c405bbde885e8 (diff) | |
download | ChibiOS-a3bb554a45935139872ffef23ea94bdbe2e928ec.tar.gz ChibiOS-a3bb554a45935139872ffef23ea94bdbe2e928ec.tar.bz2 ChibiOS-a3bb554a45935139872ffef23ea94bdbe2e928ec.zip |
Small error with .mk files in smart build mode.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7964 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/STM32/STM32F3xx')
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/platform.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/ports/STM32/STM32F3xx/platform.mk b/os/hal/ports/STM32/STM32F3xx/platform.mk index fbee8d6d9..62b27cc20 100644 --- a/os/hal/ports/STM32/STM32F3xx/platform.mk +++ b/os/hal/ports/STM32/STM32F3xx/platform.mk @@ -19,7 +19,7 @@ endif ifneq ($(findstring HAL_USE_PAL TRUE,$(HALCONF)),)
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/STM32/LLD/GPIOv2/pal_lld.c
endif
-ifneq ($(findstring "HAL_USE_I2C TRUE",$(HALCONF)),)
+ifneq ($(findstring HAL_USE_I2C TRUE,$(HALCONF)),)
PLATFORMSRC += $(CHIBIOS)/os/hal/ports/STM32/LLD/I2Cv2/i2c_lld.c
endif
ifneq ($(findstring HAL_USE_RTC TRUE,$(HALCONF)),)
|