diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-02-23 09:50:34 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-02-23 09:50:34 +0000 |
commit | 4140ae5815ee4b963d0cf2ae82d545567abd7121 (patch) | |
tree | a8af1780d883a7a83cc1d89603cfb67ce6305595 /os | |
parent | 02115502a294b1163ccb39dcbcae6f4ac3f5111c (diff) | |
download | ChibiOS-4140ae5815ee4b963d0cf2ae82d545567abd7121.tar.gz ChibiOS-4140ae5815ee4b963d0cf2ae82d545567abd7121.tar.bz2 ChibiOS-4140ae5815ee4b963d0cf2ae82d545567abd7121.zip |
Fixed platform makefiles for STM32F1xx.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10109 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/ports/STM32/STM32F1xx/platform.mk | 2 | ||||
-rw-r--r-- | os/hal/ports/STM32/STM32F1xx/platform_f105_f107.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/STM32/STM32F1xx/platform.mk b/os/hal/ports/STM32/STM32F1xx/platform.mk index 9a2fca831..216724585 100644 --- a/os/hal/ports/STM32/STM32F1xx/platform.mk +++ b/os/hal/ports/STM32/STM32F1xx/platform.mk @@ -17,8 +17,8 @@ ifneq ($(findstring HAL_USE_ADC TRUE,$(HALCONF)),) PLATFORMSRC += $(CHIBIOS)/os/hal/ports/STM32/STM32F1xx/hal_adc_lld.c
endif
else
+PLATFORMSRC += $(CHIBIOS)/os/hal/ports/STM32/STM32F1xx/hal_ext_lld_isr.c \
$(CHIBIOS)/os/hal/ports/STM32/STM32F1xx/hal_adc_lld.c
-PLATFORMSRC += $(CHIBIOS)/os/hal/ports/STM32/STM32F1xx/hal_ext_lld_isr.c
endif
# Drivers compatible with the platform.
diff --git a/os/hal/ports/STM32/STM32F1xx/platform_f105_f107.mk b/os/hal/ports/STM32/STM32F1xx/platform_f105_f107.mk index 3b2a4168a..8c4eb980e 100644 --- a/os/hal/ports/STM32/STM32F1xx/platform_f105_f107.mk +++ b/os/hal/ports/STM32/STM32F1xx/platform_f105_f107.mk @@ -17,8 +17,8 @@ ifneq ($(findstring HAL_USE_ADC TRUE,$(HALCONF)),) PLATFORMSRC += $(CHIBIOS)/os/hal/ports/STM32/STM32F1xx/hal_adc_lld.c
endif
else
+PLATFORMSRC += $(CHIBIOS)/os/hal/ports/STM32/STM32F1xx/hal_ext_lld_isr.c \
$(CHIBIOS)/os/hal/ports/STM32/STM32F1xx/hal_adc_lld.c
-PLATFORMSRC += $(CHIBIOS)/os/hal/ports/STM32/STM32F1xx/hal_ext_lld_isr.c
endif
# Drivers compatible with the platform.
|