summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/stm32/stm32_otgfsdev.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-26 01:45:37 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-26 01:45:37 +0000
commitc5c0212b8edfc405665c9ac46e2e4dca8b9c34aa (patch)
tree0264934a5e12a173199c637b8c8b0193e074c432 /nuttx/arch/arm/src/stm32/stm32_otgfsdev.c
parent7678a8287c4a198ba6811f45b9bba934b2a5716b (diff)
downloadpx4-nuttx-c5c0212b8edfc405665c9ac46e2e4dca8b9c34aa.tar.gz
px4-nuttx-c5c0212b8edfc405665c9ac46e2e4dca8b9c34aa.tar.bz2
px4-nuttx-c5c0212b8edfc405665c9ac46e2e4dca8b9c34aa.zip
Now have to press enter 3 times to start with USB NSH console
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4772 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/arm/src/stm32/stm32_otgfsdev.c')
-rwxr-xr-xnuttx/arch/arm/src/stm32/stm32_otgfsdev.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/nuttx/arch/arm/src/stm32/stm32_otgfsdev.c b/nuttx/arch/arm/src/stm32/stm32_otgfsdev.c
index e36f4e33b..d07d06c79 100755
--- a/nuttx/arch/arm/src/stm32/stm32_otgfsdev.c
+++ b/nuttx/arch/arm/src/stm32/stm32_otgfsdev.c
@@ -1263,9 +1263,11 @@ static void stm32_rxfifo_read(FAR struct stm32_ep_s *privep,
uint32_t regaddr;
int i;
- /* Get the address of the endpoint FIFO. Note: there is only one RxFIFO. */
+ /* Get the address of the RxFIFO. Note: there is only one RxFIFO so
+ * we might as well use the addess associated with EP0.
+ */
- regaddr = STM32_OTGFS_DFIFO_DEP(privep->epphy);
+ regaddr = STM32_OTGFS_DFIFO_DEP(EP0);
/* Read 32-bits and write 4 x 8-bits at time (to avoid unaligned accesses) */
@@ -1305,9 +1307,11 @@ static void stm32_rxfifo_discard(FAR struct stm32_ep_s *privep, int len)
uint32_t regaddr;
int i;
- /* Get the address of the endpoint FIFO */
+ /* Get the address of the RxFIFO Note: there is only one RxFIFO so
+ * we might as well use the addess associated with EP0.
+ */
- regaddr = STM32_OTGFS_DFIFO_DEP(privep->epphy);
+ regaddr = STM32_OTGFS_DFIFO_DEP(EP0);
/* Read 32-bits at time */