Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
diff --git a/firmware/target/arm/as3525/usb-drv-as3525v2.c b/firmware/target/arm/as3525/usb-drv-as3525v2.c index c0542d5..1fce0c2 100644 void usb_drv_init(void) /* FIXME: the current code is for internal DMA only, the clip+ architecture * defines the internal DMA model */ GAHBCFG = (GAHBCFG_INT_DMA_BURST_INCR << GAHBCFG_hburstlen_bitp) - | GAHBCFG_dma_enable | GAHBCFG_glblintrmsk; + | GAHBCFG_dma_enable; /* Select UTMI+ 16 */ GUSBCFG = GUSBCFG_force_device_mode | GUSBCFG_phy_if | 7 << GUSBCFG_toutcal_bitp; void usb_drv_init(void) | GINTMSK_disconnect; VIC_INT_ENABLE = INTERRUPT_USB; + GAHBCFG |= GAHBCFG_glblintrmsk; } void usb_drv_exit(void) { + GAHBCFG &= ~GAHBCFG_glblintrmsk; VIC_INT_EN_CLEAR = INTERRUPT_USB; DCTL = DCTL_pwronprgdone | DCTL_sftdiscon; |