git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3171 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
f9229daa87
commit
8f41aa3029
|
@ -58,7 +58,7 @@ LDSCRIPT= ch.ld
|
||||||
# Imported source files
|
# Imported source files
|
||||||
CHIBIOS = ../..
|
CHIBIOS = ../..
|
||||||
include $(CHIBIOS)/boards/OLIMEX_STM32_P103/board.mk
|
include $(CHIBIOS)/boards/OLIMEX_STM32_P103/board.mk
|
||||||
include $(CHIBIOS)/os/hal/platforms/STM32/platform.mk
|
include $(CHIBIOS)/os/hal/platforms/STM32F1xx/platform.mk
|
||||||
include $(CHIBIOS)/os/hal/hal.mk
|
include $(CHIBIOS)/os/hal/hal.mk
|
||||||
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32/port.mk
|
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32/port.mk
|
||||||
include $(CHIBIOS)/os/kernel/kernel.mk
|
include $(CHIBIOS)/os/kernel/kernel.mk
|
||||||
|
|
|
@ -1,17 +1,21 @@
|
||||||
# List of all the STM32 platform files.
|
# List of all the STM32F1xx platform files.
|
||||||
PLATFORMSRC = ${CHIBIOS}/os/hal/platforms/STM32/hal_lld.c \
|
PLATFORMSRC = ${CHIBIOS}/os/hal/platforms/STM32F1xx/hal_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/adc_lld.c \
|
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/can_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/can_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/gpt_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/gpt_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/icu_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/icu_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/pal_lld.c \
|
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/pwm_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/pwm_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/sdc_lld.c \
|
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/serial_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/serial_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/spi_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/GPIOv1/pal_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/uart_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/DMAv1/adc_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/usb_lld.c \
|
${CHIBIOS}/os/hal/platforms/STM32/DMAv1/sdc_lld.c \
|
||||||
${CHIBIOS}/os/hal/platforms/STM32/stm32_dma.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
|
# Required include directories
|
||||||
PLATFORMINC = ${CHIBIOS}/os/hal/platforms/STM32
|
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
|
||||||
|
|
Loading…
Reference in New Issue