diff options
author | Damien <damien.p.george@gmail.com> | 2013-11-01 23:25:08 +0000 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-11-01 23:25:08 +0000 |
commit | e8217c2a9b82f50d4718fd9f02f54c21cb9b512c (patch) | |
tree | 4cf41014733d8cfc62ce26d6652de23e9c66f02b /stm/lib/usb_core.c | |
parent | c1764e997cf9022b4b3dedd2bd0258fb8f469574 (diff) | |
download | micropython-e8217c2a9b82f50d4718fd9f02f54c21cb9b512c.tar.gz micropython-e8217c2a9b82f50d4718fd9f02f54c21cb9b512c.zip |
Remove debugging print for SD card; add comment to possibly-buggy USB code.
Diffstat (limited to 'stm/lib/usb_core.c')
-rw-r--r-- | stm/lib/usb_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stm/lib/usb_core.c b/stm/lib/usb_core.c index e257e73dc4..4b28c085f2 100644 --- a/stm/lib/usb_core.c +++ b/stm/lib/usb_core.c @@ -1961,7 +1961,7 @@ void USB_OTG_ActiveRemoteWakeup(USB_OTG_CORE_HANDLE *pdev) if(pdev->cfg.low_power)
{
/* un-gate USB Core clock */
- power.d32 = USB_OTG_READ_REG32(&pdev->regs.PCGCCTL);
+ power.d32 = USB_OTG_READ_REG32(&pdev->regs.PCGCCTL); // dpgeorge: taking the address here might be wrong...
power.b.gatehclk = 0;
power.b.stoppclk = 0;
USB_OTG_WRITE_REG32(pdev->regs.PCGCCTL, power.d32);
@@ -1995,7 +1995,7 @@ void USB_OTG_UngateClock(USB_OTG_CORE_HANDLE *pdev) if(dsts.b.suspsts == 1)
{
/* un-gate USB Core clock */
- power.d32 = USB_OTG_READ_REG32(&pdev->regs.PCGCCTL);
+ power.d32 = USB_OTG_READ_REG32(&pdev->regs.PCGCCTL); // dpgeorge: taking the address here might be wrong...
power.b.gatehclk = 0;
power.b.stoppclk = 0;
USB_OTG_WRITE_REG32(pdev->regs.PCGCCTL, power.d32);
|