Added BOARD_OTG_NOVBUSSENS option.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6575 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
c34a873cc9
commit
c5c7e44f8c
|
@ -889,7 +889,12 @@ void usb_lld_start(USBDriver *usbp) {
|
||||||
otgp->PCGCCTL = 0;
|
otgp->PCGCCTL = 0;
|
||||||
|
|
||||||
/* Internal FS PHY activation.*/
|
/* Internal FS PHY activation.*/
|
||||||
|
#if defined(BOARD_OTG_NOVBUSSENS)
|
||||||
|
otgp->GCCFG = GCCFG_NOVBUSSENS | GCCFG_VBUSASEN | GCCFG_VBUSBSEN |
|
||||||
|
GCCFG_PWRDWN;
|
||||||
|
#else
|
||||||
otgp->GCCFG = GCCFG_VBUSASEN | GCCFG_VBUSBSEN | GCCFG_PWRDWN;
|
otgp->GCCFG = GCCFG_VBUSASEN | GCCFG_VBUSBSEN | GCCFG_PWRDWN;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Soft core reset.*/
|
/* Soft core reset.*/
|
||||||
otg_core_reset(usbp);
|
otg_core_reset(usbp);
|
||||||
|
|
|
@ -141,6 +141,7 @@
|
||||||
(backported to 2.6.0).
|
(backported to 2.6.0).
|
||||||
- FIX: Fixed MS2ST() and US2ST() macros error (bug #415)(backported to 2.6.0,
|
- FIX: Fixed MS2ST() and US2ST() macros error (bug #415)(backported to 2.6.0,
|
||||||
2.4.4, 2.2.10, NilRTOS).
|
2.4.4, 2.2.10, NilRTOS).
|
||||||
|
- NEW: Added BOARD_OTG_NOVBUSSENS board option for STM32 OTG.
|
||||||
- NEW: Added SPI4/SPI5/SPI6 support to the STM32v1 SPIv1 low level driver.
|
- NEW: Added SPI4/SPI5/SPI6 support to the STM32v1 SPIv1 low level driver.
|
||||||
- NEW: Added chvprintf() and chsnprintf() functions to the chprintf module.
|
- NEW: Added chvprintf() and chsnprintf() functions to the chprintf module.
|
||||||
- NEW: Improved time range check in the kernel, new API chTimeElapsedSince()
|
- NEW: Improved time range check in the kernel, new API chTimeElapsedSince()
|
||||||
|
|
Loading…
Reference in New Issue