From 7355cbd461771f0d38cc2066f7a93b081ce38394 Mon Sep 17 00:00:00 2001 From: barthess Date: Sat, 18 Oct 2014 16:34:12 +0300 Subject: Added fsmc code --- os/hal/ports/STM32/STM32F4xx/platform.mk | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 os/hal/ports/STM32/STM32F4xx/platform.mk (limited to 'os/hal/ports/STM32/STM32F4xx') diff --git a/os/hal/ports/STM32/STM32F4xx/platform.mk b/os/hal/ports/STM32/STM32F4xx/platform.mk new file mode 100644 index 0000000..0fa3ce0 --- /dev/null +++ b/os/hal/ports/STM32/STM32F4xx/platform.mk @@ -0,0 +1,7 @@ +include ${CHIBIOS}/os/hal/ports/STM32/STM32F4xx/platform.mk + +PLATFORMSRC += ${CHIBIOS}/os/hal/ports/STM32/LLD/FSMCv1/fsmc.c \ + ${CHIBIOS}/os/hal/ports/STM32/LLD/FSMCv1/nand_lld.c \ + ${CHIBIOS}/os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.c + +PLATFORMINC += ${CHIBIOS}/os/hal/ports/STM32/LLD/FSMCv1 -- cgit v1.2.3 From 721c48bc978edeeff89e4b1169cb96b1569fdc3a Mon Sep 17 00:00:00 2001 From: barthess Date: Sat, 18 Oct 2014 17:20:29 +0300 Subject: FSMC. Build fixed after code moving from SVN --- os/hal/ports/STM32/STM32F4xx/platform.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'os/hal/ports/STM32/STM32F4xx') diff --git a/os/hal/ports/STM32/STM32F4xx/platform.mk b/os/hal/ports/STM32/STM32F4xx/platform.mk index 0fa3ce0..dc8f1c4 100644 --- a/os/hal/ports/STM32/STM32F4xx/platform.mk +++ b/os/hal/ports/STM32/STM32F4xx/platform.mk @@ -1,7 +1,7 @@ include ${CHIBIOS}/os/hal/ports/STM32/STM32F4xx/platform.mk -PLATFORMSRC += ${CHIBIOS}/os/hal/ports/STM32/LLD/FSMCv1/fsmc.c \ - ${CHIBIOS}/os/hal/ports/STM32/LLD/FSMCv1/nand_lld.c \ - ${CHIBIOS}/os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.c +PLATFORMSRC += ${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1/fsmc.c \ + ${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1/nand_lld.c \ + ${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.c -PLATFORMINC += ${CHIBIOS}/os/hal/ports/STM32/LLD/FSMCv1 +PLATFORMINC += ${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1 -- cgit v1.2.3 From 5f231b6aaf4f3506b462faed77db0b3a5595d918 Mon Sep 17 00:00:00 2001 From: barthess Date: Wed, 22 Oct 2014 10:33:02 +0300 Subject: FSMC. SDRAM. Style cleanup --- os/hal/ports/STM32/STM32F4xx/platform.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'os/hal/ports/STM32/STM32F4xx') diff --git a/os/hal/ports/STM32/STM32F4xx/platform.mk b/os/hal/ports/STM32/STM32F4xx/platform.mk index dc8f1c4..2ede59d 100644 --- a/os/hal/ports/STM32/STM32F4xx/platform.mk +++ b/os/hal/ports/STM32/STM32F4xx/platform.mk @@ -2,6 +2,7 @@ include ${CHIBIOS}/os/hal/ports/STM32/STM32F4xx/platform.mk PLATFORMSRC += ${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1/fsmc.c \ ${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1/nand_lld.c \ - ${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.c + ${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.c \ + ${CHIBIOS}/community/os/hal/src/fsmc_sdram.c PLATFORMINC += ${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1 -- cgit v1.2.3