summaryrefslogtreecommitdiff
path: root/nuttx/configs
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-09-25 17:26:47 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-09-25 17:26:47 +0000
commitdbcd7458e330f278edc2db818d1769444e2dfba9 (patch)
tree5602ce92b383d238b4d1ddffd4195249c0d631e8 /nuttx/configs
parent7c067d6933cec2d39f08e1a508f5717446bd72a9 (diff)
downloadpx4-nuttx-dbcd7458e330f278edc2db818d1769444e2dfba9.tar.gz
px4-nuttx-dbcd7458e330f278edc2db818d1769444e2dfba9.tar.bz2
px4-nuttx-dbcd7458e330f278edc2db818d1769444e2dfba9.zip
Fixes for compile
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2092 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs')
-rwxr-xr-xnuttx/configs/stm3210e-eval/README.txt2
-rwxr-xr-xnuttx/configs/stm3210e-eval/ostest/defconfig11
-rwxr-xr-xnuttx/configs/stm3210e-eval/ostest/ld.script5
-rwxr-xr-xnuttx/configs/stm3210e-eval/src/up_boot.c2
-rwxr-xr-xnuttx/configs/stm3210e-eval/src/up_leds.c2
-rwxr-xr-xnuttx/configs/stm3210e-eval/src/up_spi.c2
6 files changed, 16 insertions, 8 deletions
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
@@ -87,6 +87,13 @@ 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
#
# CONFIG_UARTn_DISABLE - select to disable all support for
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 <arch/board/board.h>
#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)