summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/avr
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-08 13:02:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-08 13:02:08 +0000
commit1cf6593efaf835675e73d42131cbd7a7e7414235 (patch)
treeff011904fcc340cb546ee1fc558b78ba5470cf88 /c/src/lib/libbsp/avr
parent2009-05-08 Chris Johns <chrisj@rtems.org> (diff)
downloadrtems-1cf6593efaf835675e73d42131cbd7a7e7414235.tar.bz2
2009-05-08 Joel Sherrill <joel.sherrill@oarcorp.com>
* startup/linkcmds: Correct to have 65K total RAM (mostly external) and correct base address.
Diffstat (limited to 'c/src/lib/libbsp/avr')
-rw-r--r--c/src/lib/libbsp/avr/avrtest/ChangeLog5
-rw-r--r--c/src/lib/libbsp/avr/avrtest/startup/linkcmds4
2 files changed, 7 insertions, 2 deletions
diff --git a/c/src/lib/libbsp/avr/avrtest/ChangeLog b/c/src/lib/libbsp/avr/avrtest/ChangeLog
index 5a3f48fdbb..dc30861994 100644
--- a/c/src/lib/libbsp/avr/avrtest/ChangeLog
+++ b/c/src/lib/libbsp/avr/avrtest/ChangeLog
@@ -1,3 +1,8 @@
+2009-05-08 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * startup/linkcmds: Correct to have 65K total RAM (mostly external) and
+ correct base address.
+
2009-05-04 Joel Sherrill <joel.sherrill@oarcorp.com>
* include/bsp.h: Add BSP_SMALL_MEMORY.
diff --git a/c/src/lib/libbsp/avr/avrtest/startup/linkcmds b/c/src/lib/libbsp/avr/avrtest/startup/linkcmds
index a1957cbae2..24b80e0942 100644
--- a/c/src/lib/libbsp/avr/avrtest/startup/linkcmds
+++ b/c/src/lib/libbsp/avr/avrtest/startup/linkcmds
@@ -5,8 +5,8 @@
/*
* Declare some sizes.
*/
-RamBase = DEFINED(RamBase) ? RamBase : 0;
-RamSize = DEFINED(RamSize) ? RamSize : 256K;
+RamBase = DEFINED(RamBase) ? RamBase : 0x08000000;
+RamSize = DEFINED(RamSize) ? RamSize : 64K;
HeapSize = DEFINED(HeapSize) ? HeapSize : 0x0;
StackSize = DEFINED(StackSize) ? StackSize : 0x1000;