summaryrefslogtreecommitdiffstats
path: root/nuttx/configs
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-19 22:32:19 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-19 22:32:19 +0000
commit6d7f390756a7104f356840307bcaec3fad3a6822 (patch)
tree07fab6defe3d5b4d913c978259a011b86e9e7851 /nuttx/configs
parent05ea059da1eb1eb335051084fa65b16ff0f72bd8 (diff)
Fix some questionable MAC addresses
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4956 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/configs')
-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 ce6ce5531a..5a58d37694 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!