diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index a77df7f0fdf..71bb5842c70 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -12,7 +12,7 @@
Last Updated: July 26, 2013
+Last Updated: August 12, 2013
@@ -3433,6 +3433,8 @@ extern void up_ledoff(int led);
Examples:
arch/arm/src/lpc17xx/lpc17_usbhost.c.
+ arch/arm/src/stm32/stm32_otgfshost.c.
+ arch/arm/src/sama5/sam_ohci.c.
- int (*wait)(FAR struct usbhost_driver_s *drvr, bool connected);
+ int (*wait)(FAR struct usbhost_driver_s *drvr, FAR const bool *connected);
Wait for a device to be connected or disconnected. @@ -3477,10 +3479,10 @@ extern void up_ledoff(int led);
- int (*enumerate)(FAR struct usbhost_driver_s *drvr);
+ int (*enumerate)(FAR struct usbhost_driver_s *drvr, int rhpndx);
- Enumerate the connected device. + Enumerate the device connected to a root hub port. As part of this enumeration process, the driver will (1) get the device's configuration descriptor, (2) extract the class ID info from the configuration descriptor,