summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/stm32/stm32_usbdev.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-02-12 00:25:27 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-02-12 00:25:27 +0000
commite7a073d41bdcd9b7d0f15411d1671a5786a0aaed (patch)
tree04468d607d4f515ac8e8d7b522853a7b2162a166 /nuttx/arch/arm/src/stm32/stm32_usbdev.c
parentfb8e18e23e3997e065de381bf9b6b54e0c6f331f (diff)
downloadpx4-nuttx-e7a073d41bdcd9b7d0f15411d1671a5786a0aaed.tar.gz
px4-nuttx-e7a073d41bdcd9b7d0f15411d1671a5786a0aaed.tar.bz2
px4-nuttx-e7a073d41bdcd9b7d0f15411d1671a5786a0aaed.zip
Fix start-up of USB monitor in STM32F3Discovery configuration; Back out back checkin of STM32 F1/F3 USB device driver
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5641 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/arm/src/stm32/stm32_usbdev.c')
-rw-r--r--nuttx/arch/arm/src/stm32/stm32_usbdev.c29
1 files changed, 1 insertions, 28 deletions
diff --git a/nuttx/arch/arm/src/stm32/stm32_usbdev.c b/nuttx/arch/arm/src/stm32/stm32_usbdev.c
index 42321bb63..6036eb3d5 100644
--- a/nuttx/arch/arm/src/stm32/stm32_usbdev.c
+++ b/nuttx/arch/arm/src/stm32/stm32_usbdev.c
@@ -76,10 +76,6 @@
# define CONFIG_USBDEV_EP0_MAXSIZE 64
#endif
-#ifndef CONFIG_USBDEV_SETUP_MAXDATASIZE
-# define CONFIG_USBDEV_SETUP_MAXDATASIZE CONFIG_USBDEV_EP0_MAXSIZE
-#endif
-
#ifndef CONFIG_USB_PRI
# define CONFIG_USB_PRI NVIC_SYSH_PRIORITY_DEFAULT
#endif
@@ -339,6 +335,7 @@ struct stm32_usbdev_s
/* STM32-specific fields */
+ struct usb_ctrlreq_s ctrl; /* Last EP0 request */
uint8_t ep0state; /* State of EP0 (see enum stm32_ep0state_e) */
uint8_t rsmstate; /* Resume state (see enum stm32_rsmstate_e) */
uint8_t nesofs; /* ESOF counter (for resume support) */
@@ -350,30 +347,6 @@ struct stm32_usbdev_s
uint16_t txstatus; /* " " " " " " " " */
uint16_t imask; /* Current interrupt mask */
- /* E0 SETUP data buffering.
- *
- * ctrl:
- * The 8-byte SETUP request is received on the EP0 OUT endpoint and is
- * saved.
- *
- * ep0data
- * For OUT SETUP requests, the SETUP data phase must also complete before
- * the SETUP command can be processed. The pack receipt logic will save
- * the accompanying EP0 IN data in ep0data[] before the SETUP command is
- * processed.
- *
- * For IN SETUP requests, the DATA phase will occurr AFTER the SETUP
- * control request is processed. In that case, ep0data[] may be used as
- * the response buffer.
- *
- * ep0datlen
- * Lenght of OUT DATA received in ep0data[] (Not used with OUT data)
- */
-
- struct usb_ctrlreq_s ctrl; /* Last EP0 request */
- uint8_t ep0data[CONFIG_USBDEV_SETUP_MAXDATASIZE];
- uint16_t ep0datlen;
-
/* The endpoint list */
struct stm32_ep_s eplist[STM32_NENDPOINTS];