summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-10-22 03:50:56 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-10-22 03:50:56 +0000
commit6a8a96b19dc61f90d66386f8844b3c92dc27c032 (patch)
treedee2e4f38204ffa45875796203312b2daba09fea
parentdde0b1c89a0c536b25f6cf95f267109f4b2881a6 (diff)
downloadnuttx-6a8a96b19dc61f90d66386f8844b3c92dc27c032.tar.gz
nuttx-6a8a96b19dc61f90d66386f8844b3c92dc27c032.tar.bz2
nuttx-6a8a96b19dc61f90d66386f8844b3c92dc27c032.zip
corrections
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2168 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/TODO11
-rw-r--r--nuttx/arch/arm/src/cortexm3/up_context.S2
-rw-r--r--nuttx/configs/eagle100/README.txt6
-rwxr-xr-xnuttx/configs/stm3210e-eval/README.txt5
4 files changed, 19 insertions, 5 deletions
diff --git a/nuttx/TODO b/nuttx/TODO
index c5e4aa36c..6a8ebbca8 100644
--- a/nuttx/TODO
+++ b/nuttx/TODO
@@ -1,5 +1,5 @@
-NuttX TODO List (Last updated September 16, 2009)
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+NuttX TODO List (Last updated October 20, 2009)
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
(5) Task/Scheduler (sched/)
(2) Memory Managment (mm/)
@@ -661,10 +661,15 @@ o ARM/STM32 (arch/arm/src/stm32/)
Status: Open
Priority: Medium-High
- Description: Framebuffer driver needed.
+ Description: Framebuffer/LCD driver needed (I don't know if it can handle a
+ framebuffer or not).
Status: Open
Priority: High
+ Description: FSMC externmal memory support is untested
+ Status: Opon
+ Priority: Low
+
o pjrc-8052 / MCS51 (arch/pjrc-8051/)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
diff --git a/nuttx/arch/arm/src/cortexm3/up_context.S b/nuttx/arch/arm/src/cortexm3/up_context.S
index ab3018d6f..c3264ce44 100644
--- a/nuttx/arch/arm/src/cortexm3/up_context.S
+++ b/nuttx/arch/arm/src/cortexm3/up_context.S
@@ -128,5 +128,5 @@ up_fullcontextrestore:
bx lr /* Unnecessary ... will not return */
.size up_fullcontextrestore, .-up_fullcontextrestore
- .end
+ .end
diff --git a/nuttx/configs/eagle100/README.txt b/nuttx/configs/eagle100/README.txt
index 67186d33a..5e0ddba52 100644
--- a/nuttx/configs/eagle100/README.txt
+++ b/nuttx/configs/eagle100/README.txt
@@ -95,9 +95,13 @@ CodeSourcery on Linux
ARCHCPUFLAGS = -mcpu=cortex-m3 -mthumb -mfloat-abi=soft
ARCHINCLUDES = -I. -isystem $(TOPDIR)/include
ARCHXXINCLUDES = -I. -isystem $(TOPDIR)/include -isystem $(TOPDIR)/include/cxx
- ARCHSCRIPT = -T$(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/ostest/$(LDSCRIPT)
+ ARCHSCRIPT = -T$(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/ostest/ld.script
MAXOPTIMIZATION = -O2
+ The values for TOPDIR is provided by the make system; the value for CONFIG_ARCH_BOARD
+ is provided in your defconfig file. 'ostest' refers to the ostest/ configuration;
+ this would be different for other configurations.
+
NuttX buildroot Toolchain
^^^^^^^^^^^^^^^^^^^^^^^^^
diff --git a/nuttx/configs/stm3210e-eval/README.txt b/nuttx/configs/stm3210e-eval/README.txt
index cfe8d746b..98ded86c6 100755
--- a/nuttx/configs/stm3210e-eval/README.txt
+++ b/nuttx/configs/stm3210e-eval/README.txt
@@ -95,6 +95,11 @@ CodeSourcery on Linux
ARCHSCRIPT = -T$(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/ostest/$(LDSCRIPT)
MAXOPTIMIZATION = -O2
+ Where LDSCRIPT is defined to be either ld.script or ld.script.dfu. The values
+ for TOPDIR is provided by the make system; the value for CONFIG_ARCH_BOARD is
+ provided in your defconfig file. 'ostest' refers to the ostest/ configuration;
+ this would be different for other configurations.
+
IDEs
^^^^