Fixed bug bug #660.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8496 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
7f12509003
commit
038f0a243d
|
@ -525,7 +525,7 @@ void usb_lld_reset(USBDriver *usbp) {
|
||||||
uint32_t cntr;
|
uint32_t cntr;
|
||||||
|
|
||||||
/* Post reset initialization.*/
|
/* Post reset initialization.*/
|
||||||
STM32_USB->BTABLE = 0;
|
STM32_USB->BTABLE = BTABLE_ADDR;
|
||||||
STM32_USB->ISTR = 0;
|
STM32_USB->ISTR = 0;
|
||||||
STM32_USB->DADDR = DADDR_EF;
|
STM32_USB->DADDR = DADDR_EF;
|
||||||
cntr = /*CNTR_ESOFM | */ CNTR_RESETM | CNTR_SUSPM |
|
cntr = /*CNTR_ESOFM | */ CNTR_RESETM | CNTR_SUSPM |
|
||||||
|
|
|
@ -141,6 +141,8 @@
|
||||||
(backported to 3.0.3).
|
(backported to 3.0.3).
|
||||||
- HAL: Fixed RTC module loses day of week when converting (bug #664)
|
- HAL: Fixed RTC module loses day of week when converting (bug #664)
|
||||||
(backported to 3.0.3).
|
(backported to 3.0.3).
|
||||||
|
- HAL: Fixed STM32 USBv1 does not make use of BTABLE_ADDR define (bug #660)
|
||||||
|
(backported to 3.0.4 and 2.6.10).
|
||||||
- HAL: Fixed invalid class type for sdPutWouldBlock() and sdGetWouldBlock()
|
- HAL: Fixed invalid class type for sdPutWouldBlock() and sdGetWouldBlock()
|
||||||
functions (bug #659)(backported to 3.0.3 and 2.6.10).
|
functions (bug #659)(backported to 3.0.3 and 2.6.10).
|
||||||
- HAL: Fixed STM32F0xx HAL missing MCOPRE support (bug #658).
|
- HAL: Fixed STM32F0xx HAL missing MCOPRE support (bug #658).
|
||||||
|
|
Loading…
Reference in New Issue