aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/STM32F0xx/platform.mk
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-12-05 15:07:55 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-12-05 15:07:55 +0000
commit9d3e7a8fbca5679379f6bc713ed8dc1d8e880589 (patch)
tree2cadc1dfbbf112d538233e311d93111b372f4e7c /os/hal/platforms/STM32F0xx/platform.mk
parentc8f3291765c55611ef8a8f26e4a9be817d7c0cbe (diff)
downloadChibiOS-9d3e7a8fbca5679379f6bc713ed8dc1d8e880589.tar.gz
ChibiOS-9d3e7a8fbca5679379f6bc713ed8dc1d8e880589.tar.bz2
ChibiOS-9d3e7a8fbca5679379f6bc713ed8dc1d8e880589.zip
STM32 SPI driver divided in two distinct implementations.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4877 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32F0xx/platform.mk')
-rw-r--r--os/hal/platforms/STM32F0xx/platform.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32F0xx/platform.mk b/os/hal/platforms/STM32F0xx/platform.mk
index 54b05bdbc..04b6c5f24 100644
--- a/os/hal/platforms/STM32F0xx/platform.mk
+++ b/os/hal/platforms/STM32F0xx/platform.mk
@@ -7,8 +7,8 @@ PLATFORMSRC = ${CHIBIOS}/os/hal/platforms/STM32F0xx/stm32_dma.c \
${CHIBIOS}/os/hal/platforms/STM32/gpt_lld.c \
${CHIBIOS}/os/hal/platforms/STM32/icu_lld.c \
${CHIBIOS}/os/hal/platforms/STM32/pwm_lld.c \
- ${CHIBIOS}/os/hal/platforms/STM32/spi_lld.c \
${CHIBIOS}/os/hal/platforms/STM32/GPIOv2/pal_lld.c \
+ ${CHIBIOS}/os/hal/platforms/STM32/SPIv2/spi_lld.c \
${CHIBIOS}/os/hal/platforms/STM32/USARTv2/serial_lld.c \
${CHIBIOS}/os/hal/platforms/STM32/USARTv2/uart_lld.c
@@ -16,4 +16,5 @@ PLATFORMSRC = ${CHIBIOS}/os/hal/platforms/STM32F0xx/stm32_dma.c \
PLATFORMINC = ${CHIBIOS}/os/hal/platforms/STM32F0xx \
${CHIBIOS}/os/hal/platforms/STM32 \
${CHIBIOS}/os/hal/platforms/STM32/GPIOv2 \
+ ${CHIBIOS}/os/hal/platforms/STM32/SPIv2 \
${CHIBIOS}/os/hal/platforms/STM32/USARTv2