summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm3210e-eval/ostest
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-10-01 00:06:57 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-10-01 00:06:57 +0000
commit5176d1d719ae6af0a00e20e8c68af5d110e75c85 (patch)
treecce552d1b9aa0d71d6cd4f292311362961fb4b35 /nuttx/configs/stm3210e-eval/ostest
parent119109e8489679a7dfad8551ff7f7bd990937700 (diff)
downloadpx4-nuttx-5176d1d719ae6af0a00e20e8c68af5d110e75c85.tar.gz
px4-nuttx-5176d1d719ae6af0a00e20e8c68af5d110e75c85.tar.bz2
px4-nuttx-5176d1d719ae6af0a00e20e8c68af5d110e75c85.zip
Misc setup changes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2109 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/stm3210e-eval/ostest')
-rwxr-xr-xnuttx/configs/stm3210e-eval/ostest/defconfig4
-rwxr-xr-xnuttx/configs/stm3210e-eval/ostest/ld.script6
2 files changed, 6 insertions, 4 deletions
diff --git a/nuttx/configs/stm3210e-eval/ostest/defconfig b/nuttx/configs/stm3210e-eval/ostest/defconfig
index d73d0d983..0a71545ca 100755
--- a/nuttx/configs/stm3210e-eval/ostest/defconfig
+++ b/nuttx/configs/stm3210e-eval/ostest/defconfig
@@ -214,9 +214,9 @@ CONFIG_SSI_POLLWAIT=y
# CONFIG_HAVE_LIBM - toolchain supports libm.a
#
CONFIG_RRLOAD_BINARY=n
-CONFIG_INTELHEX_BINARY=n
+CONFIG_INTELHEX_BINARY=y
CONFIG_MOTOROLA_SREC=n
-CONFIG_RAW_BINARY=y
+CONFIG_RAW_BINARY=n
CONFIG_HAVE_LIBM=n
#
diff --git a/nuttx/configs/stm3210e-eval/ostest/ld.script b/nuttx/configs/stm3210e-eval/ostest/ld.script
index 0e318f7cc..15db8dd0d 100755
--- a/nuttx/configs/stm3210e-eval/ostest/ld.script
+++ b/nuttx/configs/stm3210e-eval/ostest/ld.script
@@ -34,12 +34,14 @@
****************************************************************************/
/* The STM32F103ZET6 has 512Kb of FLASH beginning at address 0x0800:0000 and
- * 64Kb of SRAM beginning at address 0x2000:0000
+ * 64Kb of SRAM beginning at address 0x2000:0000. Here we assume that the
+ * STM3210E-EVAL's DFU bootloader is being used. In that case, the corrct
+ * load .text load address is 0x08030000 (leaving 320Kb).
*/
MEMORY
{
- flash (rx) : ORIGIN = 0x08000000, LENGTH = 512K
+ flash (rx) : ORIGIN = 0x08030000, LENGTH = 320K
sram (rwx) : ORIGIN = 0x20000000, LENGTH = 64K
}