aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/STM32F1xx/platform.mk
diff options
context:
space:
mode:
authorbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-08-09 10:15:25 +0000
committerbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-08-09 10:15:25 +0000
commit1bcc0f1dc26c3358ca0c17f0b52e8b44dbc89d42 (patch)
treeba16188b80e3ed6bceac77805ff42349987a55d4 /os/hal/platforms/STM32F1xx/platform.mk
parent0752e9d7e973161c32e4b667c7a8d06c68b0a9eb (diff)
downloadChibiOS-1bcc0f1dc26c3358ca0c17f0b52e8b44dbc89d42.tar.gz
ChibiOS-1bcc0f1dc26c3358ca0c17f0b52e8b44dbc89d42.tar.bz2
ChibiOS-1bcc0f1dc26c3358ca0c17f0b52e8b44dbc89d42.zip
I2C. Syncing with trunk (step 2)
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/i2c_dev@3216 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32F1xx/platform.mk')
-rw-r--r--os/hal/platforms/STM32F1xx/platform.mk22
1 files changed, 22 insertions, 0 deletions
diff --git a/os/hal/platforms/STM32F1xx/platform.mk b/os/hal/platforms/STM32F1xx/platform.mk
new file mode 100644
index 000000000..010a3f96d
--- /dev/null
+++ b/os/hal/platforms/STM32F1xx/platform.mk
@@ -0,0 +1,22 @@
+# List of all the STM32F1xx platform files.
+PLATFORMSRC = ${CHIBIOS}/os/hal/platforms/STM32F1xx/hal_lld.c \
+ ${CHIBIOS}/os/hal/platforms/STM32F1xx/adc_lld.c \
+ ${CHIBIOS}/os/hal/platforms/STM32/can_lld.c \
+ ${CHIBIOS}/os/hal/platforms/STM32/gpt_lld.c \
+ ${CHIBIOS}/os/hal/platforms/STM32/icu_lld.c \
+ ${CHIBIOS}/os/hal/platforms/STM32/i2c_lld.c \
+ ${CHIBIOS}/os/hal/platforms/STM32/pwm_lld.c \
+ ${CHIBIOS}/os/hal/platforms/STM32/serial_lld.c \
+ ${CHIBIOS}/os/hal/platforms/STM32/GPIOv1/pal_lld.c \
+ ${CHIBIOS}/os/hal/platforms/STM32/DMAv1/sdc_lld.c \
+ ${CHIBIOS}/os/hal/platforms/STM32/DMAv1/spi_lld.c \
+ ${CHIBIOS}/os/hal/platforms/STM32/DMAv1/uart_lld.c \
+ ${CHIBIOS}/os/hal/platforms/STM32/DMAv1/stm32_dma.c \
+ ${CHIBIOS}/os/hal/platforms/STM32/USBv1/usb_lld.c
+
+# Required include directories
+PLATFORMINC = ${CHIBIOS}/os/hal/platforms/STM32F1xx \
+ ${CHIBIOS}/os/hal/platforms/STM32 \
+ ${CHIBIOS}/os/hal/platforms/STM32/GPIOv1 \
+ ${CHIBIOS}/os/hal/platforms/STM32/DMAv1 \
+ ${CHIBIOS}/os/hal/platforms/STM32/USBv1