Modify configuration for use with STM32 OTG FS driver testing

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4580 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2012-04-09 21:08:37 +00:00
parent a0bd1172cd
commit 9f9a222a91
+3 -3
View File
@@ -2255,7 +2255,7 @@ static inline void stm32_epout_interrupt(FAR struct stm32_usbdev_s *priv)
if ((doepint & OTGFS_DOEPINT_XFRC) != 0) if ((doepint & OTGFS_DOEPINT_XFRC) != 0)
{ {
usbtrace(TRACE_INTDECODE(STM32_TRACEINTID_EPOUT_XFRC), (uint16_t)diepint); usbtrace(TRACE_INTDECODE(STM32_TRACEINTID_EPOUT_XFRC), (uint16_t)doepint);
/* Clear the bit in DOEPINTn for this interrupt */ /* Clear the bit in DOEPINTn for this interrupt */
@@ -2272,7 +2272,7 @@ static inline void stm32_epout_interrupt(FAR struct stm32_usbdev_s *priv)
#if 0 #if 0
if ((doepint & OTGFS_DOEPINT_EPDISD) != 0) if ((doepint & OTGFS_DOEPINT_EPDISD) != 0)
{ {
usbtrace(TRACE_INTDECODE(STM32_TRACEINTID_EPOUT_EPDISD), (uint16_t)diepint); usbtrace(TRACE_INTDECODE(STM32_TRACEINTID_EPOUT_EPDISD), (uint16_t)doepint);
/* Clear the bit in DOEPINTn for this interrupt */ /* Clear the bit in DOEPINTn for this interrupt */
@@ -2283,7 +2283,7 @@ static inline void stm32_epout_interrupt(FAR struct stm32_usbdev_s *priv)
if ((doepint & OTGFS_DOEPINT_SETUP) != 0) if ((doepint & OTGFS_DOEPINT_SETUP) != 0)
{ {
usbtrace(TRACE_INTDECODE(STM32_TRACEINTID_EPOUT_SETUP), (uint16_t)diepint); usbtrace(TRACE_INTDECODE(STM32_TRACEINTID_EPOUT_SETUP), (uint16_t)doepint);
/* Handle the receipt of the SETUP packet */ /* Handle the receipt of the SETUP packet */