From b67ecdfeca2d1d5289e4c9b577a1940cf8702ab3 Mon Sep 17 00:00:00 2001 From: Fabio Utzig Date: Mon, 7 Mar 2016 12:33:00 -0300 Subject: [KINETIS] Move from main repo to contrib --- os/hal/ports/KINETIS/KL2x/platform.mk | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 os/hal/ports/KINETIS/KL2x/platform.mk (limited to 'os/hal/ports/KINETIS/KL2x/platform.mk') diff --git a/os/hal/ports/KINETIS/KL2x/platform.mk b/os/hal/ports/KINETIS/KL2x/platform.mk new file mode 100644 index 0000000..90671ee --- /dev/null +++ b/os/hal/ports/KINETIS/KL2x/platform.mk @@ -0,0 +1,15 @@ +# List of all platform files. +PLATFORMSRC = ${CHIBIOS}/os/hal/ports/common/ARMCMx/nvic.c \ + ${CHIBIOS}/os/hal/ports/KINETIS/KL2x/hal_lld.c \ + ${CHIBIOS}/os/hal/ports/KINETIS/KL2x/pal_lld.c \ + ${CHIBIOS}/os/hal/ports/KINETIS/KL2x/serial_lld.c \ + ${CHIBIOS}/os/hal/ports/KINETIS/LLD/i2c_lld.c \ + ${CHIBIOS}/os/hal/ports/KINETIS/LLD/ext_lld.c \ + ${CHIBIOS}/os/hal/ports/KINETIS/LLD/adc_lld.c \ + ${CHIBIOS}/os/hal/ports/KINETIS/KL2x/pwm_lld.c \ + ${CHIBIOS}/os/hal/ports/KINETIS/KL2x/st_lld.c + +# Required include directories +PLATFORMINC = ${CHIBIOS}/os/hal/ports/common/ARMCMx \ + ${CHIBIOS}/os/hal/ports/KINETIS/KL2x \ + ${CHIBIOS}/os/hal/ports/KINETIS/LLD -- cgit v1.2.3 From 0bbef8ed17810ee00c26af8cfb76130cd5af799e Mon Sep 17 00:00:00 2001 From: Fabio Utzig Date: Tue, 8 Mar 2016 07:09:40 -0300 Subject: [KINETIS] Fix platform driver references to contrib --- os/hal/ports/KINETIS/KL2x/platform.mk | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'os/hal/ports/KINETIS/KL2x/platform.mk') diff --git a/os/hal/ports/KINETIS/KL2x/platform.mk b/os/hal/ports/KINETIS/KL2x/platform.mk index 90671ee..f9d3c67 100644 --- a/os/hal/ports/KINETIS/KL2x/platform.mk +++ b/os/hal/ports/KINETIS/KL2x/platform.mk @@ -1,15 +1,15 @@ # List of all platform files. PLATFORMSRC = ${CHIBIOS}/os/hal/ports/common/ARMCMx/nvic.c \ - ${CHIBIOS}/os/hal/ports/KINETIS/KL2x/hal_lld.c \ - ${CHIBIOS}/os/hal/ports/KINETIS/KL2x/pal_lld.c \ - ${CHIBIOS}/os/hal/ports/KINETIS/KL2x/serial_lld.c \ - ${CHIBIOS}/os/hal/ports/KINETIS/LLD/i2c_lld.c \ - ${CHIBIOS}/os/hal/ports/KINETIS/LLD/ext_lld.c \ - ${CHIBIOS}/os/hal/ports/KINETIS/LLD/adc_lld.c \ - ${CHIBIOS}/os/hal/ports/KINETIS/KL2x/pwm_lld.c \ - ${CHIBIOS}/os/hal/ports/KINETIS/KL2x/st_lld.c + ${CHIBIOS_CONTRIB}/os/hal/ports/KINETIS/KL2x/hal_lld.c \ + ${CHIBIOS_CONTRIB}/os/hal/ports/KINETIS/KL2x/pal_lld.c \ + ${CHIBIOS_CONTRIB}/os/hal/ports/KINETIS/KL2x/serial_lld.c \ + ${CHIBIOS_CONTRIB}/os/hal/ports/KINETIS/LLD/i2c_lld.c \ + ${CHIBIOS_CONTRIB}/os/hal/ports/KINETIS/LLD/ext_lld.c \ + ${CHIBIOS_CONTRIB}/os/hal/ports/KINETIS/LLD/adc_lld.c \ + ${CHIBIOS_CONTRIB}/os/hal/ports/KINETIS/KL2x/pwm_lld.c \ + ${CHIBIOS_CONTRIB}/os/hal/ports/KINETIS/KL2x/st_lld.c # Required include directories PLATFORMINC = ${CHIBIOS}/os/hal/ports/common/ARMCMx \ - ${CHIBIOS}/os/hal/ports/KINETIS/KL2x \ - ${CHIBIOS}/os/hal/ports/KINETIS/LLD + ${CHIBIOS_CONTRIB}/os/hal/ports/KINETIS/KL2x \ + ${CHIBIOS_CONTRIB}/os/hal/ports/KINETIS/LLD -- cgit v1.2.3