From eb52b0a4b648421a3042afadc6629acf8ff5fd3f Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 21 Feb 2012 22:00:28 +0000 Subject: [PATCH] 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 --- Documentation/NuttxPortingGuide.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 62f795887f..c9656a6c51 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -4923,10 +4923,10 @@ build 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. + CONFIG_FTPD_CMDBUFFERSIZE: The maximum size of one command. Default: 128 bytes.
  • - CONFIG_FTPD_DATABUFFERSIZE: The size of the I/O buffer for data transfers. Default: 2048 bytes. + CONFIG_FTPD_DATABUFFERSIZE: The size of the I/O buffer for data transfers. Default: 512 bytes.
  • CONFIG_FTPD_WORKERSTACKSIZE: The stacksize to allocate for each FTP daemon worker thread. Default: 2048 bytes.