summaryrefslogtreecommitdiff
path: root/nuttx/configs/lpc4330-xplorer
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-07-19 22:32:19 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-07-19 22:32:19 +0000
commit4faeb216ded5ad12b709988a52e1bdbbe06eafee (patch)
tree07fab6defe3d5b4d913c978259a011b86e9e7851 /nuttx/configs/lpc4330-xplorer
parent5d2cb5987bd1487b5aada95997843ad1c1b796b0 (diff)
downloadpx4-nuttx-4faeb216ded5ad12b709988a52e1bdbbe06eafee.tar.gz
px4-nuttx-4faeb216ded5ad12b709988a52e1bdbbe06eafee.tar.bz2
px4-nuttx-4faeb216ded5ad12b709988a52e1bdbbe06eafee.zip
Fix some questionable MAC addresses
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4956 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/lpc4330-xplorer')
-rw-r--r--nuttx/configs/lpc4330-xplorer/README.txt16
1 files changed, 12 insertions, 4 deletions
diff --git a/nuttx/configs/lpc4330-xplorer/README.txt b/nuttx/configs/lpc4330-xplorer/README.txt
index ce6ce5531..5a58d3769 100644
--- a/nuttx/configs/lpc4330-xplorer/README.txt
+++ b/nuttx/configs/lpc4330-xplorer/README.txt
@@ -909,10 +909,10 @@ Where <subdir> is one of the following:
CONFIG_SPIFI_OFFSET - Offset the beginning of the block driver this many
bytes into the device address space. This offset must be an exact
multiple of the erase block size (CONFIG_SPIFI_BLKSIZE). Default 0.
- CONFIG_SPIFI_BLKSIZE - The size of one device erase block. If not defined
- then the driver will try to determine the correct erase block size by
- examining that data returned from spifi_initialize (which sometimes
- seems bad).
+ CONFIG_SPIFI_BLKSIZE - The size of one device erase block. If not defined
+ then the driver will try to determine the correct erase block size by
+ examining that data returned from spifi_initialize (which sometimes
+ seems bad).
Other SPIFI options
@@ -922,3 +922,11 @@ Where <subdir> is one of the following:
CONFIG_SPIFI_READONLY - Define to support only read-only operations.
CONFIG_SPIFI_LIBRARY - Don't use the LPC43xx ROM routines but, instead,
use an external library implementation of the SPIFI interface.
+
+ In my experience, there were some missing function pointers in the LPC43xx
+ SPIFI ROM routines and the SPIFI configuration could only be built with
+ CONFIG_SPIFI_LIBRARY=y. The SPIFI library is proprietary and cannot be
+ provided within NuttX open source repository; SPIFI library binaries can
+ be found on the lpcware.com website. In this build sceneario, you must
+ also provide the patch to the external SPIFI library be defining the make
+ variable EXTRA_LIBS in the top-level Make.defs file. Good luck!