9
0
Fork 0

USB class drivers need to call DEV_CONNECT

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@3160 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2010-12-04 18:06:28 +00:00
parent 3c859bb80d
commit a6641aa3f2
1 changed files with 4 additions and 0 deletions

View File

@ -1390,3 +1390,7 @@
or data. This is typical, for example, in "9-bit" displays where the 9th bit
is the CMD/DATA bit. The cmddata method provides selection of command or data.
* drivers/lcd/p14201.c -- Now used the cmddata() method of the SPI interface.
* arch/arm/src/lpc17xx/lpc17_usbdev.c -- LPC17xx USB driver is not functional.
* drivers/usbdev/usbserial.c and usbstorage.c -- All USB class drivers need
to call DEV_CONNECT() when they are ready to be enumerated. That is,
(1) initially when bound to the USB driver, and (2) after a USB reset.