From dbcd7458e330f278edc2db818d1769444e2dfba9 Mon Sep 17 00:00:00 2001 From: patacongo Date: Fri, 25 Sep 2009 17:26:47 +0000 Subject: Fixes for compile git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2092 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/configs/stm3210e-eval/README.txt | 2 +- nuttx/configs/stm3210e-eval/ostest/defconfig | 11 +++++++++-- nuttx/configs/stm3210e-eval/ostest/ld.script | 5 +++-- nuttx/configs/stm3210e-eval/src/up_boot.c | 2 +- nuttx/configs/stm3210e-eval/src/up_leds.c | 2 +- nuttx/configs/stm3210e-eval/src/up_spi.c | 2 +- 6 files changed, 16 insertions(+), 8 deletions(-) (limited to 'nuttx/configs') diff --git a/nuttx/configs/stm3210e-eval/README.txt b/nuttx/configs/stm3210e-eval/README.txt index 175209b93..bb26a7440 100755 --- a/nuttx/configs/stm3210e-eval/README.txt +++ b/nuttx/configs/stm3210e-eval/README.txt @@ -141,7 +141,7 @@ STM3210E-EVAL-specific Configuration Options CONFIG_ARCH_CHIP_name - For use in C code to identify the exact chip: - CONFIG_ARCH_CHIP_STM32F103Z + CONFIG_ARCH_CHIP_STM32F103ZET6 CONFIG_ARCH_BOARD - Identifies the configs subdirectory and hence, the board that supports the particular chip or SoC. diff --git a/nuttx/configs/stm3210e-eval/ostest/defconfig b/nuttx/configs/stm3210e-eval/ostest/defconfig index 496717411..c55c11329 100755 --- a/nuttx/configs/stm3210e-eval/ostest/defconfig +++ b/nuttx/configs/stm3210e-eval/ostest/defconfig @@ -71,8 +71,8 @@ CONFIG_ARCH=arm CONFIG_ARCH_ARM=y CONFIG_ARCH_CORTEXM3=y CONFIG_ARCH_CHIP=stm32 -CONFIG_ARCH_CHIP_STM32F103Z=y -CONFIG_ARCH_BOARD=stm3210e_eval +CONFIG_ARCH_CHIP_STM32F103ZET6=y +CONFIG_ARCH_BOARD=stm3210e-eval CONFIG_ARCH_BOARD_STM3210E_EVAL=y CONFIG_BOARD_LOOPSPERMSEC=4531 CONFIG_DRAM_SIZE=0x00010000 @@ -86,6 +86,13 @@ CONFIG_ARCH_BOOTLOADER=n CONFIG_ARCH_LEDS=y CONFIG_ARCH_CALIBRATION=n +# +# Identify toolchain +CONFIG_STM32_CODESOURCERY=n +CONFIG_STM32_DEVKITARM=n +CONFIG_STM32_RAISONANCE=n +CONFIG_STM32_BUILDROOT=y + # # STM32F103Z specific serial device driver settings # diff --git a/nuttx/configs/stm3210e-eval/ostest/ld.script b/nuttx/configs/stm3210e-eval/ostest/ld.script index 59a673c04..fd0014c20 100755 --- a/nuttx/configs/stm3210e-eval/ostest/ld.script +++ b/nuttx/configs/stm3210e-eval/ostest/ld.script @@ -33,11 +33,12 @@ * ****************************************************************************/ -/* The STM32F103Z has S56Kb of FLASH beginning at address 0x0000:0000 */ +/* The STM32F103ZET6 has 512Kb of FLASH beginning at address 0x0800:0000 and + * 64Kb of FLASH beginning at 0x2000:0000*/ MEMORY { - flash (rx) : ORIGIN = 0x00000000, LENGTH = 256K + flash (rx) : ORIGIN = 0x08000000, LENGTH = 256K sram (rwx) : ORIGIN = 0x20000000, LENGTH = 64K } diff --git a/nuttx/configs/stm3210e-eval/src/up_boot.c b/nuttx/configs/stm3210e-eval/src/up_boot.c index 9807f5686..cfc02062d 100755 --- a/nuttx/configs/stm3210e-eval/src/up_boot.c +++ b/nuttx/configs/stm3210e-eval/src/up_boot.c @@ -46,7 +46,7 @@ #include #include "up_arch.h" -#include "stm3210e_internal.h" +#include "stm3210e-internal.h" /************************************************************************************ * Definitions diff --git a/nuttx/configs/stm3210e-eval/src/up_leds.c b/nuttx/configs/stm3210e-eval/src/up_leds.c index 175dfabff..c40953b41 100755 --- a/nuttx/configs/stm3210e-eval/src/up_leds.c +++ b/nuttx/configs/stm3210e-eval/src/up_leds.c @@ -49,7 +49,7 @@ #include "up_arch.h" #include "up_internal.h" #include "stm32_internal.h" -#include "stm3210e_internal.h" +#include "stm3210e-internal.h" /**************************************************************************** * Definitions diff --git a/nuttx/configs/stm3210e-eval/src/up_spi.c b/nuttx/configs/stm3210e-eval/src/up_spi.c index 8599eff2b..852c4faec 100755 --- a/nuttx/configs/stm3210e-eval/src/up_spi.c +++ b/nuttx/configs/stm3210e-eval/src/up_spi.c @@ -49,7 +49,7 @@ #include "up_arch.h" #include "chip.h" #include "stm32_internal.h" -#include "stm3210e_internal.h" +#include "stm3210e-internal.h" #if !defined(CONFIG_SPI1_DISABLE) || !defined(CONFIG_SPI2_DISABLE) -- cgit v1.2.3