mirror of
https://github.com/apache/nuttx.git
synced 2026-06-05 15:58:59 +08:00
update USB configuration settings
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1068 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -508,4 +508,5 @@
|
|||||||
* FAT: Fix access to unaligned 32-bit values in partion table (start sector & size)
|
* FAT: Fix access to unaligned 32-bit values in partion table (start sector & size)
|
||||||
* Fixed a problem with a un-initialized variable in the USB serial driver.
|
* Fixed a problem with a un-initialized variable in the USB serial driver.
|
||||||
* Added USB storage NXP LPC214x configuration
|
* Added USB storage NXP LPC214x configuration
|
||||||
|
* Added a test for USB storage under examples/usbstorage
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
<tr align="center" bgcolor="#e4e4e4">
|
<tr align="center" bgcolor="#e4e4e4">
|
||||||
<td>
|
<td>
|
||||||
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
|
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
|
||||||
<p>Last Updated: October 22, 2008</p>
|
<p>Last Updated: October 23, 2008</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@@ -1140,6 +1140,7 @@ nuttx-0.3.17 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
|||||||
* FAT: Fix access to unaligned 32-bit values in partion table (start sector & size)
|
* FAT: Fix access to unaligned 32-bit values in partion table (start sector & size)
|
||||||
* Fixed a problem with a un-initialized variable in the USB serial driver.
|
* Fixed a problem with a un-initialized variable in the USB serial driver.
|
||||||
* Added USB storage NXP LPC214x configuration
|
* Added USB storage NXP LPC214x configuration
|
||||||
|
* Added a test for USB storage under examples/usbstorage
|
||||||
|
|
||||||
pascal-0.1.3 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
pascal-0.1.3 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||||
|
|
||||||
|
|||||||
@@ -1535,6 +1535,16 @@ The system can be re-made subsequently by just typing <code>make</code>.
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<h2>SPI-based MMC/SD driver<h2>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<code>CONFIG_MMCSD_NSLOTS</code>: Number of MMC/SD slots supported by the driver. Default is one.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<code>CONFIG_MMCSD_READONLY</code>: Provide read-only access. Default is Read/Write
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<h2>Network Support</h2>
|
<h2>Network Support</h2>
|
||||||
<h3>TCP/IP and UDP support via uIP</h2>
|
<h3>TCP/IP and UDP support via uIP</h2>
|
||||||
<ul>
|
<ul>
|
||||||
@@ -1655,6 +1665,9 @@ The system can be re-made subsequently by just typing <code>make</code>.
|
|||||||
|
|
||||||
<h3>USB Serial Device Class Driver</h3>
|
<h3>USB Serial Device Class Driver</h3>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li>
|
||||||
|
<code>CONFIG_USBSER</code>: Enable compilation of the USB serial driver
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<code>CONFIG_USBSER_EPINTIN</code>: The logical 7-bit address of a hardware endpoint that supports interrupt IN operation
|
<code>CONFIG_USBSER_EPINTIN</code>: The logical 7-bit address of a hardware endpoint that supports interrupt IN operation
|
||||||
</li>
|
</li>
|
||||||
@@ -1680,6 +1693,10 @@ The system can be re-made subsequently by just typing <code>make</code>.
|
|||||||
|
|
||||||
<h3>USB Storage Device Configuration</h3>
|
<h3>USB Storage Device Configuration</h3>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li>
|
||||||
|
<code>CONFIG_USBSTRG</code>:
|
||||||
|
Enable compilation of the USB storage driver
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<code>CONFIG_USBSTRG_EP0MAXPACKET</code>:
|
<code>CONFIG_USBSTRG_EP0MAXPACKET</code>:
|
||||||
Max packet size for endpoint 0
|
Max packet size for endpoint 0
|
||||||
|
|||||||
+15
-1
@@ -248,6 +248,17 @@ defconfig -- This is a configuration file similar to the Linux
|
|||||||
CONFIG_DEV_PIPE_SIZE - Size, in bytes, of the buffer to allocated
|
CONFIG_DEV_PIPE_SIZE - Size, in bytes, of the buffer to allocated
|
||||||
for pipe and FIFO support
|
for pipe and FIFO support
|
||||||
|
|
||||||
|
Filesystem configuration
|
||||||
|
CONFIG_FS_FAT - Enable FAT filesystem support
|
||||||
|
CONFIG_FAT_SECTORSIZE - Max supported sector size
|
||||||
|
CONFIG_FS_ROMFS - Enable ROMFS filesystem support
|
||||||
|
|
||||||
|
SPI-based MMC/SD driver
|
||||||
|
CONFIG_MMCSD_NSLOTS - Number of MMC/SD slots supported by the
|
||||||
|
driver. Default is one.
|
||||||
|
CONFIG_MMCSD_READONLY - Provide read-only access. Default is
|
||||||
|
Read/Write
|
||||||
|
|
||||||
TCP/IP and UDP support via uIP
|
TCP/IP and UDP support via uIP
|
||||||
CONFIG_NET - Enable or disable all network features
|
CONFIG_NET - Enable or disable all network features
|
||||||
CONFIG_NET_IPv6 - Build in support for IPv6
|
CONFIG_NET_IPv6 - Build in support for IPv6
|
||||||
@@ -303,6 +314,8 @@ defconfig -- This is a configuration file similar to the Linux
|
|||||||
CONFIG_USBDEV_TRACE_NRECORDS - Number of trace entries to remember
|
CONFIG_USBDEV_TRACE_NRECORDS - Number of trace entries to remember
|
||||||
|
|
||||||
USB serial device class driver
|
USB serial device class driver
|
||||||
|
CONFIG_USBSER
|
||||||
|
Enable compilation of the USB serial driver
|
||||||
CONFIG_USBSER_EPINTIN
|
CONFIG_USBSER_EPINTIN
|
||||||
The logical 7-bit address of a hardware endpoint that supports
|
The logical 7-bit address of a hardware endpoint that supports
|
||||||
interrupt IN operation
|
interrupt IN operation
|
||||||
@@ -322,7 +335,8 @@ defconfig -- This is a configuration file similar to the Linux
|
|||||||
Size of the serial receive/transmit buffers
|
Size of the serial receive/transmit buffers
|
||||||
|
|
||||||
USB Storage Device Configuration
|
USB Storage Device Configuration
|
||||||
|
CONFIG_USBSTRG
|
||||||
|
Enable compilation of the USB storage driver
|
||||||
CONFIG_USBSTRG_EP0MAXPACKET
|
CONFIG_USBSTRG_EP0MAXPACKET
|
||||||
Max packet size for endpoint 0
|
Max packet size for endpoint 0
|
||||||
CONFIG_USBSTRGEPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
CONFIG_USBSTRGEPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
||||||
|
|||||||
@@ -281,7 +281,8 @@ CONFIG_PREALLOC_WDOGS=4
|
|||||||
CONFIG_PREALLOC_TIMERS=4
|
CONFIG_PREALLOC_TIMERS=4
|
||||||
|
|
||||||
#
|
#
|
||||||
# FAT filesystem configuration
|
# Filesystem configuration
|
||||||
|
#
|
||||||
# CONFIG_FS_FAT - Enable FAT filesystem support
|
# CONFIG_FS_FAT - Enable FAT filesystem support
|
||||||
# CONFIG_FAT_SECTORSIZE - Max supported sector size
|
# CONFIG_FAT_SECTORSIZE - Max supported sector size
|
||||||
# CONFIG_FS_ROMFS - Enable ROMFS filesystem support
|
# CONFIG_FS_ROMFS - Enable ROMFS filesystem support
|
||||||
@@ -293,6 +294,16 @@ CONFIG_FS_ROMFS=n
|
|||||||
CONFIG_MMCSD_NSLOTS=1
|
CONFIG_MMCSD_NSLOTS=1
|
||||||
CONFIG_MMCSD_READONLY=n
|
CONFIG_MMCSD_READONLY=n
|
||||||
|
|
||||||
|
#
|
||||||
|
# SPI-based MMC/SD driver
|
||||||
|
#
|
||||||
|
# CONFIG_MMCSD_NSLOTS
|
||||||
|
# Number of MMC/SD slots supported by the driver
|
||||||
|
# CONFIG_MMCSD_READONLY
|
||||||
|
# Provide read-only access (default is read/write)
|
||||||
|
CONFIG_MMCSD_NSLOTS=1
|
||||||
|
CONFIG_MMCSD_READONLY=n
|
||||||
|
|
||||||
#
|
#
|
||||||
# TCP/IP and UDP support via uIP
|
# TCP/IP and UDP support via uIP
|
||||||
# CONFIG_NET - Enable or disable all network features
|
# CONFIG_NET - Enable or disable all network features
|
||||||
@@ -398,6 +409,8 @@ CONFIG_LPC214X_USBDEV_DMAINTMASK=0
|
|||||||
#
|
#
|
||||||
# USB Serial Device Configuration
|
# USB Serial Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSER
|
||||||
|
# Enable compilation of the USB serial driver
|
||||||
# CONFIG_USBSER_EPINTIN
|
# CONFIG_USBSER_EPINTIN
|
||||||
# The logical 7-bit address of a hardware endpoint that supports
|
# The logical 7-bit address of a hardware endpoint that supports
|
||||||
# interrupt IN operation
|
# interrupt IN operation
|
||||||
@@ -415,6 +428,7 @@ CONFIG_LPC214X_USBDEV_DMAINTMASK=0
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
||||||
# Size of the serial receive/transmit buffers
|
# Size of the serial receive/transmit buffers
|
||||||
|
CONFIG_USBSER=n
|
||||||
CONFIG_USBSER_EPINTIN=1
|
CONFIG_USBSER_EPINTIN=1
|
||||||
CONFIG_USBSER_EPBULKOUT=2
|
CONFIG_USBSER_EPBULKOUT=2
|
||||||
CONFIG_USBSER_EPBULKIN=5
|
CONFIG_USBSER_EPBULKIN=5
|
||||||
@@ -430,6 +444,8 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
#
|
#
|
||||||
# USB Storage Device Configuration
|
# USB Storage Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSTRG
|
||||||
|
# Enable compilation of the USB storage driver
|
||||||
# CONFIG_USBSTRG_EP0MAXPACKET
|
# CONFIG_USBSTRG_EP0MAXPACKET
|
||||||
# Max packet size for endpoint 0
|
# Max packet size for endpoint 0
|
||||||
# CONFIG_USBSTRG_EPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
# CONFIG_USBSTRG_EPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
||||||
@@ -447,6 +463,7 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSTRG_REMOVABLE
|
# CONFIG_USBSTRG_REMOVABLE
|
||||||
# Select if the media is removable
|
# Select if the media is removable
|
||||||
|
CONFIG_USBSTRG=n
|
||||||
CONFIG_USBSTRG_EP0MAXPACKET=64
|
CONFIG_USBSTRG_EP0MAXPACKET=64
|
||||||
CONFIG_USBSTRG_EPBULKOUT=2
|
CONFIG_USBSTRG_EPBULKOUT=2
|
||||||
CONFIG_USBSTRG_EPBULKIN=5
|
CONFIG_USBSTRG_EPBULKIN=5
|
||||||
|
|||||||
@@ -281,13 +281,24 @@ CONFIG_PREALLOC_WDOGS=4
|
|||||||
CONFIG_PREALLOC_TIMERS=4
|
CONFIG_PREALLOC_TIMERS=4
|
||||||
|
|
||||||
#
|
#
|
||||||
# FAT filesystem configuration
|
# Filesystem configuration
|
||||||
|
#
|
||||||
# CONFIG_FS_FAT - Enable FAT filesystem support
|
# CONFIG_FS_FAT - Enable FAT filesystem support
|
||||||
# CONFIG_FAT_SECTORSIZE - Max supported sector size
|
# CONFIG_FAT_SECTORSIZE - Max supported sector size
|
||||||
# CONFIG_FS_ROMFS - Enable ROMFS filesystem support
|
# CONFIG_FS_ROMFS - Enable ROMFS filesystem support
|
||||||
CONFIG_FS_FAT=n
|
CONFIG_FS_FAT=n
|
||||||
CONFIG_FS_ROMFS=n
|
CONFIG_FS_ROMFS=n
|
||||||
|
|
||||||
|
#
|
||||||
|
# SPI-based MMC/SD driver
|
||||||
|
#
|
||||||
|
# CONFIG_MMCSD_NSLOTS
|
||||||
|
# Number of MMC/SD slots supported by the driver
|
||||||
|
# CONFIG_MMCSD_READONLY
|
||||||
|
# Provide read-only access (default is read/write)
|
||||||
|
CONFIG_MMCSD_NSLOTS=1
|
||||||
|
CONFIG_MMCSD_READONLY=n
|
||||||
|
|
||||||
#
|
#
|
||||||
# TCP/IP and UDP support via uIP
|
# TCP/IP and UDP support via uIP
|
||||||
# CONFIG_NET - Enable or disable all network features
|
# CONFIG_NET - Enable or disable all network features
|
||||||
@@ -393,6 +404,8 @@ CONFIG_LPC214X_USBDEV_DMAINTMASK=0
|
|||||||
#
|
#
|
||||||
# USB Serial Device Configuration
|
# USB Serial Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSER
|
||||||
|
# Enable compilation of the USB serial driver
|
||||||
# CONFIG_USBSER_EPINTIN
|
# CONFIG_USBSER_EPINTIN
|
||||||
# The logical 7-bit address of a hardware endpoint that supports
|
# The logical 7-bit address of a hardware endpoint that supports
|
||||||
# interrupt IN operation
|
# interrupt IN operation
|
||||||
@@ -410,6 +423,7 @@ CONFIG_LPC214X_USBDEV_DMAINTMASK=0
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
||||||
# Size of the serial receive/transmit buffers
|
# Size of the serial receive/transmit buffers
|
||||||
|
CONFIG_USBSER=n
|
||||||
CONFIG_USBSER_EPINTIN=1
|
CONFIG_USBSER_EPINTIN=1
|
||||||
CONFIG_USBSER_EPBULKOUT=2
|
CONFIG_USBSER_EPBULKOUT=2
|
||||||
CONFIG_USBSER_EPBULKIN=5
|
CONFIG_USBSER_EPBULKIN=5
|
||||||
@@ -425,6 +439,8 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
#
|
#
|
||||||
# USB Storage Device Configuration
|
# USB Storage Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSTRG
|
||||||
|
# Enable compilation of the USB storage driver
|
||||||
# CONFIG_USBSTRG_EP0MAXPACKET
|
# CONFIG_USBSTRG_EP0MAXPACKET
|
||||||
# Max packet size for endpoint 0
|
# Max packet size for endpoint 0
|
||||||
# CONFIG_USBSTRG_EPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
# CONFIG_USBSTRG_EPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
||||||
@@ -442,6 +458,7 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSTRG_REMOVABLE
|
# CONFIG_USBSTRG_REMOVABLE
|
||||||
# Select if the media is removable
|
# Select if the media is removable
|
||||||
|
CONFIG_USBSTRG=n
|
||||||
CONFIG_USBSTRG_EP0MAXPACKET=64
|
CONFIG_USBSTRG_EP0MAXPACKET=64
|
||||||
CONFIG_USBSTRG_EPBULKOUT=2
|
CONFIG_USBSTRG_EPBULKOUT=2
|
||||||
CONFIG_USBSTRG_EPBULKIN=5
|
CONFIG_USBSTRG_EPBULKIN=5
|
||||||
|
|||||||
@@ -282,13 +282,24 @@ CONFIG_PREALLOC_WDOGS=4
|
|||||||
CONFIG_PREALLOC_TIMERS=4
|
CONFIG_PREALLOC_TIMERS=4
|
||||||
|
|
||||||
#
|
#
|
||||||
# FAT filesystem configuration
|
# Filesystem configuration
|
||||||
|
#
|
||||||
# CONFIG_FS_FAT - Enable FAT filesystem support
|
# CONFIG_FS_FAT - Enable FAT filesystem support
|
||||||
# CONFIG_FAT_SECTORSIZE - Max supported sector size
|
# CONFIG_FAT_SECTORSIZE - Max supported sector size
|
||||||
# CONFIG_FS_ROMFS - Enable ROMFS filesystem support
|
# CONFIG_FS_ROMFS - Enable ROMFS filesystem support
|
||||||
CONFIG_FS_FAT=n
|
CONFIG_FS_FAT=n
|
||||||
CONFIG_FS_ROMFS=n
|
CONFIG_FS_ROMFS=n
|
||||||
|
|
||||||
|
#
|
||||||
|
# SPI-based MMC/SD driver
|
||||||
|
#
|
||||||
|
# CONFIG_MMCSD_NSLOTS
|
||||||
|
# Number of MMC/SD slots supported by the driver
|
||||||
|
# CONFIG_MMCSD_READONLY
|
||||||
|
# Provide read-only access (default is read/write)
|
||||||
|
CONFIG_MMCSD_NSLOTS=1
|
||||||
|
CONFIG_MMCSD_READONLY=n
|
||||||
|
|
||||||
#
|
#
|
||||||
# TCP/IP and UDP support via uIP
|
# TCP/IP and UDP support via uIP
|
||||||
# CONFIG_NET - Enable or disable all network features
|
# CONFIG_NET - Enable or disable all network features
|
||||||
@@ -394,6 +405,8 @@ CONFIG_LPC214X_USBDEV_DMAINTMASK=0
|
|||||||
#
|
#
|
||||||
# USB Serial Device Configuration
|
# USB Serial Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSER
|
||||||
|
# Enable compilation of the USB serial driver
|
||||||
# CONFIG_USBSER_EPINTIN
|
# CONFIG_USBSER_EPINTIN
|
||||||
# The logical 7-bit address of a hardware endpoint that supports
|
# The logical 7-bit address of a hardware endpoint that supports
|
||||||
# interrupt IN operation
|
# interrupt IN operation
|
||||||
@@ -411,6 +424,7 @@ CONFIG_LPC214X_USBDEV_DMAINTMASK=0
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
||||||
# Size of the serial receive/transmit buffers
|
# Size of the serial receive/transmit buffers
|
||||||
|
CONFIG_USBSER=y
|
||||||
CONFIG_USBSER_EPINTIN=1
|
CONFIG_USBSER_EPINTIN=1
|
||||||
CONFIG_USBSER_EPBULKOUT=2
|
CONFIG_USBSER_EPBULKOUT=2
|
||||||
CONFIG_USBSER_EPBULKIN=5
|
CONFIG_USBSER_EPBULKIN=5
|
||||||
@@ -426,6 +440,8 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
#
|
#
|
||||||
# USB Storage Device Configuration
|
# USB Storage Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSTRG
|
||||||
|
# Enable compilation of the USB storage driver
|
||||||
# CONFIG_USBSTRG_EP0MAXPACKET
|
# CONFIG_USBSTRG_EP0MAXPACKET
|
||||||
# Max packet size for endpoint 0
|
# Max packet size for endpoint 0
|
||||||
# CONFIG_USBSTRG_EPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
# CONFIG_USBSTRG_EPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
||||||
@@ -443,6 +459,7 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSTRG_REMOVABLE
|
# CONFIG_USBSTRG_REMOVABLE
|
||||||
# Select if the media is removable
|
# Select if the media is removable
|
||||||
|
CONFIG_USBSTRG=n
|
||||||
CONFIG_USBSTRG_EP0MAXPACKET=64
|
CONFIG_USBSTRG_EP0MAXPACKET=64
|
||||||
CONFIG_USBSTRG_EPBULKOUT=2
|
CONFIG_USBSTRG_EPBULKOUT=2
|
||||||
CONFIG_USBSTRG_EPBULKIN=5
|
CONFIG_USBSTRG_EPBULKIN=5
|
||||||
|
|||||||
@@ -282,13 +282,24 @@ CONFIG_PREALLOC_WDOGS=4
|
|||||||
CONFIG_PREALLOC_TIMERS=4
|
CONFIG_PREALLOC_TIMERS=4
|
||||||
|
|
||||||
#
|
#
|
||||||
# FAT filesystem configuration
|
# Filesystem configuration
|
||||||
|
#
|
||||||
# CONFIG_FS_FAT - Enable FAT filesystem support
|
# CONFIG_FS_FAT - Enable FAT filesystem support
|
||||||
# CONFIG_FAT_SECTORSIZE - Max supported sector size
|
# CONFIG_FAT_SECTORSIZE - Max supported sector size
|
||||||
# CONFIG_FS_ROMFS - Enable ROMFS filesystem support
|
# CONFIG_FS_ROMFS - Enable ROMFS filesystem support
|
||||||
CONFIG_FS_FAT=n
|
CONFIG_FS_FAT=n
|
||||||
CONFIG_FS_ROMFS=n
|
CONFIG_FS_ROMFS=n
|
||||||
|
|
||||||
|
#
|
||||||
|
# SPI-based MMC/SD driver
|
||||||
|
#
|
||||||
|
# CONFIG_MMCSD_NSLOTS
|
||||||
|
# Number of MMC/SD slots supported by the driver
|
||||||
|
# CONFIG_MMCSD_READONLY
|
||||||
|
# Provide read-only access (default is read/write)
|
||||||
|
CONFIG_MMCSD_NSLOTS=1
|
||||||
|
CONFIG_MMCSD_READONLY=n
|
||||||
|
|
||||||
#
|
#
|
||||||
# TCP/IP and UDP support via uIP
|
# TCP/IP and UDP support via uIP
|
||||||
# CONFIG_NET - Enable or disable all network features
|
# CONFIG_NET - Enable or disable all network features
|
||||||
@@ -394,6 +405,8 @@ CONFIG_LPC214X_USBDEV_DMAINTMASK=0
|
|||||||
#
|
#
|
||||||
# USB Serial Device Configuration
|
# USB Serial Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSER
|
||||||
|
# Enable compilation of the USB serial driver
|
||||||
# CONFIG_USBSER_EPINTIN
|
# CONFIG_USBSER_EPINTIN
|
||||||
# The logical 7-bit address of a hardware endpoint that supports
|
# The logical 7-bit address of a hardware endpoint that supports
|
||||||
# interrupt IN operation
|
# interrupt IN operation
|
||||||
@@ -411,6 +424,7 @@ CONFIG_LPC214X_USBDEV_DMAINTMASK=0
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
||||||
# Size of the serial receive/transmit buffers
|
# Size of the serial receive/transmit buffers
|
||||||
|
CONFIG_USBSER=n
|
||||||
CONFIG_USBSER_EPINTIN=1
|
CONFIG_USBSER_EPINTIN=1
|
||||||
CONFIG_USBSER_EPBULKOUT=2
|
CONFIG_USBSER_EPBULKOUT=2
|
||||||
CONFIG_USBSER_EPBULKIN=5
|
CONFIG_USBSER_EPBULKIN=5
|
||||||
@@ -426,6 +440,8 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
#
|
#
|
||||||
# USB Storage Device Configuration
|
# USB Storage Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSTRG
|
||||||
|
# Enable compilation of the USB storage driver
|
||||||
# CONFIG_USBSTRG_EP0MAXPACKET
|
# CONFIG_USBSTRG_EP0MAXPACKET
|
||||||
# Max packet size for endpoint 0
|
# Max packet size for endpoint 0
|
||||||
# CONFIG_USBSER_EPBULKOUT and CONFIG_USBSER_EPBULKIN
|
# CONFIG_USBSER_EPBULKOUT and CONFIG_USBSER_EPBULKIN
|
||||||
@@ -443,6 +459,7 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSTRG_REMOVABLE
|
# CONFIG_USBSTRG_REMOVABLE
|
||||||
# Select if the media is removable
|
# Select if the media is removable
|
||||||
|
CONFIG_USBSTRG=y
|
||||||
CONFIG_USBSTRG_EP0MAXPACKET=64
|
CONFIG_USBSTRG_EP0MAXPACKET=64
|
||||||
CONFIG_USBSTRG_EPBULKOUT=2
|
CONFIG_USBSTRG_EPBULKOUT=2
|
||||||
CONFIG_USBSTRG_EPBULKIN=5
|
CONFIG_USBSTRG_EPBULKIN=5
|
||||||
|
|||||||
@@ -361,6 +361,8 @@ CONFIG_DM320_USBDEV_DMA=n
|
|||||||
#
|
#
|
||||||
# USB Serial Device Configuration
|
# USB Serial Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSER
|
||||||
|
# Enable compilation of the USB serial driver
|
||||||
# CONFIG_USBSER_EPINTIN
|
# CONFIG_USBSER_EPINTIN
|
||||||
# The logical 7-bit address of a hardware endpoint that supports
|
# The logical 7-bit address of a hardware endpoint that supports
|
||||||
# interrupt IN operation
|
# interrupt IN operation
|
||||||
@@ -378,6 +380,7 @@ CONFIG_DM320_USBDEV_DMA=n
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
||||||
# Size of the serial receive/transmit buffers
|
# Size of the serial receive/transmit buffers
|
||||||
|
CONFIG_USBSER=n
|
||||||
CONFIG_USBSER_EPINTIN=3
|
CONFIG_USBSER_EPINTIN=3
|
||||||
CONFIG_USBSER_EPBULKOUT=2
|
CONFIG_USBSER_EPBULKOUT=2
|
||||||
CONFIG_USBSER_EPBULKIN=1
|
CONFIG_USBSER_EPBULKIN=1
|
||||||
@@ -393,6 +396,8 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
#
|
#
|
||||||
# USB Storage Device Configuration
|
# USB Storage Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSTRG
|
||||||
|
# Enable compilation of the USB storage driver
|
||||||
# CONFIG_USBSTRG_EP0MAXPACKET
|
# CONFIG_USBSTRG_EP0MAXPACKET
|
||||||
# Max packet size for endpoint 0
|
# Max packet size for endpoint 0
|
||||||
# CONFIG_USBSTRG_EPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
# CONFIG_USBSTRG_EPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
||||||
@@ -410,6 +415,7 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSTRG_REMOVABLE
|
# CONFIG_USBSTRG_REMOVABLE
|
||||||
# Select if the media is removable
|
# Select if the media is removable
|
||||||
|
CONFIG_USBSTRG=n
|
||||||
CONFIG_USBSTRG_EP0MAXPACKET=64
|
CONFIG_USBSTRG_EP0MAXPACKET=64
|
||||||
CONFIG_USBSTRG_EPBULKOUT=2
|
CONFIG_USBSTRG_EPBULKOUT=2
|
||||||
CONFIG_USBSTRG_EPBULKIN=1
|
CONFIG_USBSTRG_EPBULKIN=1
|
||||||
|
|||||||
@@ -369,6 +369,8 @@ CONFIG_DM320_USBDEV_DMA=n
|
|||||||
#
|
#
|
||||||
# USB Serial Device Configuration
|
# USB Serial Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSER
|
||||||
|
# Enable compilation of the USB serial driver
|
||||||
# CONFIG_USBSER_EPINTIN
|
# CONFIG_USBSER_EPINTIN
|
||||||
# The logical 7-bit address of a hardware endpoint that supports
|
# The logical 7-bit address of a hardware endpoint that supports
|
||||||
# interrupt IN operation
|
# interrupt IN operation
|
||||||
@@ -386,6 +388,7 @@ CONFIG_DM320_USBDEV_DMA=n
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
||||||
# Size of the serial receive/transmit buffers
|
# Size of the serial receive/transmit buffers
|
||||||
|
CONFIG_USBSER=n
|
||||||
CONFIG_USBSER_EPINTIN=3
|
CONFIG_USBSER_EPINTIN=3
|
||||||
CONFIG_USBSER_EPBULKOUT=2
|
CONFIG_USBSER_EPBULKOUT=2
|
||||||
CONFIG_USBSER_EPBULKIN=1
|
CONFIG_USBSER_EPBULKIN=1
|
||||||
@@ -401,6 +404,8 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
#
|
#
|
||||||
# USB Storage Device Configuration
|
# USB Storage Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSTRG
|
||||||
|
# Enable compilation of the USB storage driver
|
||||||
# CONFIG_USBSTRG_EP0MAXPACKET
|
# CONFIG_USBSTRG_EP0MAXPACKET
|
||||||
# Max packet size for endpoint 0
|
# Max packet size for endpoint 0
|
||||||
# CONFIG_USBSTRG_EPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
# CONFIG_USBSTRG_EPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
||||||
@@ -418,6 +423,7 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSTRG_REMOVABLE
|
# CONFIG_USBSTRG_REMOVABLE
|
||||||
# Select if the media is removable
|
# Select if the media is removable
|
||||||
|
CONFIG_USBSTRG=n
|
||||||
CONFIG_USBSTRG_EP0MAXPACKET=64
|
CONFIG_USBSTRG_EP0MAXPACKET=64
|
||||||
CONFIG_USBSTRG_EPBULKOUT=2
|
CONFIG_USBSTRG_EPBULKOUT=2
|
||||||
CONFIG_USBSTRG_EPBULKIN=1
|
CONFIG_USBSTRG_EPBULKIN=1
|
||||||
|
|||||||
@@ -361,6 +361,8 @@ CONFIG_DM320_USBDEV_DMA=n
|
|||||||
#
|
#
|
||||||
# USB Serial Device Configuration
|
# USB Serial Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSER
|
||||||
|
# Enable compilation of the USB serial driver
|
||||||
# CONFIG_USBSER_EPINTIN
|
# CONFIG_USBSER_EPINTIN
|
||||||
# The logical 7-bit address of a hardware endpoint that supports
|
# The logical 7-bit address of a hardware endpoint that supports
|
||||||
# interrupt IN operation
|
# interrupt IN operation
|
||||||
@@ -378,6 +380,7 @@ CONFIG_DM320_USBDEV_DMA=n
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
||||||
# Size of the serial receive/transmit buffers
|
# Size of the serial receive/transmit buffers
|
||||||
|
CONFIG_USBSER=n
|
||||||
CONFIG_USBSER_EPINTIN=3
|
CONFIG_USBSER_EPINTIN=3
|
||||||
CONFIG_USBSER_EPBULKOUT=2
|
CONFIG_USBSER_EPBULKOUT=2
|
||||||
CONFIG_USBSER_EPBULKIN=1
|
CONFIG_USBSER_EPBULKIN=1
|
||||||
@@ -393,6 +396,8 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
#
|
#
|
||||||
# USB Storage Device Configuration
|
# USB Storage Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSTRG
|
||||||
|
# Enable compilation of the USB storage driver
|
||||||
# CONFIG_USBSTRG_EP0MAXPACKET
|
# CONFIG_USBSTRG_EP0MAXPACKET
|
||||||
# Max packet size for endpoint 0
|
# Max packet size for endpoint 0
|
||||||
# CONFIG_USBSTRG_EPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
# CONFIG_USBSTRG_EPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
||||||
@@ -410,6 +415,7 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSTRG_REMOVABLE
|
# CONFIG_USBSTRG_REMOVABLE
|
||||||
# Select if the media is removable
|
# Select if the media is removable
|
||||||
|
CONFIG_USBSTRG=n
|
||||||
CONFIG_USBSTRG_EP0MAXPACKET=64
|
CONFIG_USBSTRG_EP0MAXPACKET=64
|
||||||
CONFIG_USBSTRG_EPBULKOUT=2
|
CONFIG_USBSTRG_EPBULKOUT=2
|
||||||
CONFIG_USBSTRG_EPBULKIN=1
|
CONFIG_USBSTRG_EPBULKIN=1
|
||||||
|
|||||||
@@ -361,6 +361,8 @@ CONFIG_DM320_USBDEV_DMA=n
|
|||||||
#
|
#
|
||||||
# USB Serial Device Configuration
|
# USB Serial Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSER
|
||||||
|
# Enable compilation of the USB serial driver
|
||||||
# CONFIG_USBSER_EPINTIN
|
# CONFIG_USBSER_EPINTIN
|
||||||
# The logical 7-bit address of a hardware endpoint that supports
|
# The logical 7-bit address of a hardware endpoint that supports
|
||||||
# interrupt IN operation
|
# interrupt IN operation
|
||||||
@@ -378,6 +380,7 @@ CONFIG_DM320_USBDEV_DMA=n
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
# CONFIG_USBSER_RXBUFSIZE and CONFIG_USBSER_TXBUFSIZE
|
||||||
# Size of the serial receive/transmit buffers
|
# Size of the serial receive/transmit buffers
|
||||||
|
CONFIG_USBSER=n
|
||||||
CONFIG_USBSER_EPINTIN=3
|
CONFIG_USBSER_EPINTIN=3
|
||||||
CONFIG_USBSER_EPBULKOUT=2
|
CONFIG_USBSER_EPBULKOUT=2
|
||||||
CONFIG_USBSER_EPBULKIN=1
|
CONFIG_USBSER_EPBULKIN=1
|
||||||
@@ -393,6 +396,8 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
#
|
#
|
||||||
# USB Storage Device Configuration
|
# USB Storage Device Configuration
|
||||||
#
|
#
|
||||||
|
# CONFIG_USBSTRG
|
||||||
|
# Enable compilation of the USB storage driver
|
||||||
# CONFIG_USBSTRG_EP0MAXPACKET
|
# CONFIG_USBSTRG_EP0MAXPACKET
|
||||||
# Max packet size for endpoint 0
|
# Max packet size for endpoint 0
|
||||||
# CONFIG_USBSTRG_EPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
# CONFIG_USBSTRG_EPBULKOUT and CONFIG_USBSTRG_EPBULKIN
|
||||||
@@ -410,6 +415,7 @@ CONFIG_USBSER_TXBUFSIZE=512
|
|||||||
# The product ID code/string
|
# The product ID code/string
|
||||||
# CONFIG_USBSTRG_REMOVABLE
|
# CONFIG_USBSTRG_REMOVABLE
|
||||||
# Select if the media is removable
|
# Select if the media is removable
|
||||||
|
CONFIG_USBSTRG=n
|
||||||
CONFIG_USBSTRG_EP0MAXPACKET=64
|
CONFIG_USBSTRG_EP0MAXPACKET=64
|
||||||
CONFIG_USBSTRG_EPBULKOUT=2
|
CONFIG_USBSTRG_EPBULKOUT=2
|
||||||
CONFIG_USBSTRG_EPBULKIN=1
|
CONFIG_USBSTRG_EPBULKIN=1
|
||||||
|
|||||||
Reference in New Issue
Block a user