summaryrefslogtreecommitdiff
path: root/apps/include/netutils
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-21 22:00:28 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-02-21 22:00:28 +0000
commit5c775298fca577723a497605f0f4dec4df9fa05a (patch)
tree42953b95266cf4011d01d1580f5c0eff56518337 /apps/include/netutils
parentc56a18fb38e4d9d11b6799eef395a6dc667750e7 (diff)
downloadnuttx-5c775298fca577723a497605f0f4dec4df9fa05a.tar.gz
nuttx-5c775298fca577723a497605f0f4dec4df9fa05a.tar.bz2
nuttx-5c775298fca577723a497605f0f4dec4df9fa05a.zip
STM32 SDIO DMA: Ignore DMA FIFO errors; these seem to be bogus. SD multiple block transfers result in CRC errors; avoid them by using smaller FTP buffer sizes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4410 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/include/netutils')
-rwxr-xr-xapps/include/netutils/ftpd.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/include/netutils/ftpd.h b/apps/include/netutils/ftpd.h
index f7581c89e..71a2096bb 100755
--- a/apps/include/netutils/ftpd.h
+++ b/apps/include/netutils/ftpd.h
@@ -2,7 +2,7 @@
* apps/include/netutils/ftpd.h
*
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -61,9 +61,9 @@
* CONFIG_FTPD_SERVERID - The server name to use in FTP communications.
* Default: "NuttX FTP Server"
* CONFIG_FTPD_CMDBUFFERSIZE - The maximum size of one command. Default:
- * 512 bytes.
+ * 128 bytes.
* CONFIG_FTPD_DATABUFFERSIZE - The size of the I/O buffer for data
- * transfers. Default: 2048 bytes.
+ * transfers. Default: 512 bytes.
* CONFIG_FTPD_WORKERSTACKSIZE - The stacksize to allocate for each
* FTP daemon worker thread. Default: 2048 bytes.
*/
@@ -85,11 +85,11 @@
#endif
#ifndef CONFIG_FTPD_CMDBUFFERSIZE
-# define CONFIG_FTPD_CMDBUFFERSIZE 512
+# define CONFIG_FTPD_CMDBUFFERSIZE 128
#endif
#ifndef CONFIG_FTPD_DATABUFFERSIZE
-# define CONFIG_FTPD_DATABUFFERSIZE 2048
+# define CONFIG_FTPD_DATABUFFERSIZE 512
#endif
#ifndef CONFIG_FTPD_WORKERSTACKSIZE