git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15844 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2022-11-20 09:02:49 +00:00
parent f49425b15f
commit efd143f36b
2 changed files with 3 additions and 1 deletions

View File

@ -897,7 +897,7 @@ void usb_lld_stop(USBDriver *usbp) {
nvicDisableVector(STM32_OTG2_NUMBER);
rccDisableOTG_HS();
#if defined(BOARD_OTG2_USES_ULPI)
rccDisableOTG_HSULPI()
rccDisableOTG_HSULPI();
#endif
}
#endif

View File

@ -130,6 +130,8 @@
- NEW: Increased stacks size in RT test suite from 128 to 192. added an
option to override the stack size by defining THREADS_STACK_SIZE
in the makefile.
- FIX: Fixed missing semicolon in STM32 OTGv1 driver (bug #1243)
(backported to 20.3.5)(backported to 21.11.3).
- FIX: Fixed HSI48 not enabled for STM32L496/4A6 (bug #1242)
(backported to 20.3.5)(backported to 21.11.3).
- FIX: Fixed problem in STM32 gpt_lld_polled_delay() implementation (bug #1241)