summaryrefslogtreecommitdiff
path: root/nuttx/configs
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-05-26 23:45:45 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-05-26 23:45:45 +0000
commit45736d3dd038edade97535c9bbedfae4553c05e7 (patch)
tree112481fb4f05ed93262dfa13189af8f5efc6441d /nuttx/configs
parent3a1f59ff8e4f6f3d93df5c1e18ff0a040be497a1 (diff)
downloadpx4-nuttx-45736d3dd038edade97535c9bbedfae4553c05e7.tar.gz
px4-nuttx-45736d3dd038edade97535c9bbedfae4553c05e7.tar.bz2
px4-nuttx-45736d3dd038edade97535c9bbedfae4553c05e7.zip
Integrating new MMC/SD design
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1827 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs')
-rw-r--r--nuttx/configs/eagle100/src/up_ssi.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/nuttx/configs/eagle100/src/up_ssi.c b/nuttx/configs/eagle100/src/up_ssi.c
index 723012042..217e4b3bc 100644
--- a/nuttx/configs/eagle100/src/up_ssi.c
+++ b/nuttx/configs/eagle100/src/up_ssi.c
@@ -59,23 +59,27 @@
* Definitions
************************************************************************************/
-/* Enables debug output from this file (needs CONFIG_DEBUG with CONFIG_DEBUG_VERBOSE
- * too)
- */
+/* Enables debug output from this file (needs CONFIG_DEBUG too) */
-#undef SSI_DEBUG /* Define to enable debug */
+#undef SSI_DEBUG /* Define to enable debug */
+#undef SSI_VERBOSE /* Define to enable verbose debug */
#ifdef SSI_DEBUG
# define ssidbg lldbg
-# define ssivdbg llvdbg
+# ifdef SSI_VERBOSE
+# define ssivdbg lldbg
+# else
+# define ssivdbg(x...)
+# endif
#else
+# undef SSI_VERBOSE
# define ssidbg(x...)
# define ssivdbg(x...)
#endif
/* Dump GPIO registers */
-#ifdef SSI_DEBUG
+#ifdef SSI_VERBOSE
# define ssi_dumpgpio(m) lm3s_dumpgpio(SDCCS_GPIO, m)
#else
# define ssi_dumpgpio(m)