summaryrefslogtreecommitdiff
path: root/nuttx/examples
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-12-10 17:15:11 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-12-10 17:15:11 +0000
commit89b3ca3216c72caf0534f2f9660554198afdfe7e (patch)
tree3fb1a52ef7453a3bcfa44506b1934cc7be903cdd /nuttx/examples
parentc63a13af0b0ab849d62890c00d09ff1fab754141 (diff)
downloadpx4-nuttx-89b3ca3216c72caf0534f2f9660554198afdfe7e.tar.gz
px4-nuttx-89b3ca3216c72caf0534f2f9660554198afdfe7e.tar.bz2
px4-nuttx-89b3ca3216c72caf0534f2f9660554198afdfe7e.zip
Release 0.3.4nuttx-3.4
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@436 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples')
-rw-r--r--nuttx/examples/nettest/nettest.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/nuttx/examples/nettest/nettest.h b/nuttx/examples/nettest/nettest.h
index 318211e79..4805c8f9a 100644
--- a/nuttx/examples/nettest/nettest.h
+++ b/nuttx/examples/nettest/nettest.h
@@ -69,15 +69,9 @@
# define errno *get_errno_ptr()
- /* If debug is enabled, use the synchronous lib_lowprintf so that the
- * program output does not get disassociated in the debug output.
- */
-
-# ifdef CONFIG_DEBUG
-# define message(...) lib_lowprintf(__VA_ARGS__)
-# else
-# define message(...) printf(__VA_ARGS__)
-# endif
+ /* Used lib_rawprintf() so that there is not confusion from buffered IO */
+
+# define message(...) lib_rawprintf(__VA_ARGS__)
/* At present, uIP does only abortive disconnects */