git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_16.1.x@9686 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2016-07-07 09:32:07 +00:00
parent ece59fba75
commit 624e468fa4
5 changed files with 9 additions and 6 deletions

View File

@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/HAL
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 4.0.5
PROJECT_NUMBER = 4.0.6
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a

View File

@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/HAL
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 4.0.5
PROJECT_NUMBER = 4.0.6
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a

View File

@ -103,7 +103,7 @@
/**
* @brief HAL version string.
*/
#define HAL_VERSION "4.0.5"
#define HAL_VERSION "4.0.6"
/**
* @brief HAL version major number.
@ -118,7 +118,7 @@
/**
* @brief HAL version patch number.
*/
#define CH_HAL_PATCH 5
#define CH_HAL_PATCH 6
/** @} */
/**

View File

@ -148,9 +148,9 @@ static bool default_handler(USBDriver *usbp) {
procedure on the current configuration.*/
if (usbp->state == USB_ACTIVE) {
/* Current configuration cleared.*/
chSysLockFromISR ();
osalSysLockFromISR ();
usbDisableEndpointsI(usbp);
chSysUnlockFromISR ();
osalSysUnlockFromISR ();
usbp->configuration = 0U;
usbp->state = USB_SELECTED;
_usb_isr_invoke_event_cb(usbp, USB_EVENT_UNCONFIGURED);

View File

@ -71,8 +71,11 @@
*****************************************************************************
*** Releases and Change Log ***
*****************************************************************************
*** 16.1.6 ***
- HAL: Fixed dependency on RT in hal_usb.c (bug #764).
- HAL: Fixed wrong backup domain reset in STM32L4xx\hal_lld (bug #763).
*** 16.1.5 ***
- NEW: Added support for more Nucleo and Discovery boards.
- HAL: Board files regenerated using the latest version of the generator