summaryrefslogtreecommitdiff
path: root/nuttx/examples
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-11-17 14:28:10 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-11-17 14:28:10 +0000
commit8bc9aa48a6c10260d599cff7cca8fa89322c3ea5 (patch)
tree59be18d4347e5cfa2d8e0bb87f8c2fb3a6ba333a /nuttx/examples
parenta80ff427530ab32907f0d3858b05a8d4fbf13be2 (diff)
downloadpx4-nuttx-8bc9aa48a6c10260d599cff7cca8fa89322c3ea5.tar.gz
px4-nuttx-8bc9aa48a6c10260d599cff7cca8fa89322c3ea5.tar.bz2
px4-nuttx-8bc9aa48a6c10260d599cff7cca8fa89322c3ea5.zip
Fix DM90x0 driver problem that caused TX overruns
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@384 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples')
-rw-r--r--nuttx/examples/nettest/nettest-server.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/nuttx/examples/nettest/nettest-server.c b/nuttx/examples/nettest/nettest-server.c
index d00498f4e..984dee6b3 100644
--- a/nuttx/examples/nettest/nettest-server.c
+++ b/nuttx/examples/nettest/nettest-server.c
@@ -207,6 +207,7 @@ void recv_server(void)
/* Then send the same data back to the client */
+ message("server: Sending %d bytes\n", totalbytesread);
nbytessent = send(acceptsd, buffer, totalbytesread, 0);
if (nbytessent <= 0)
{