Update HistoryV1.1.3 / 04-March-2016
Main Changes - Maintenance release to fix known defects and enhancements implementation.
- Generic update:
- Update HAL weak empty callbacks to prevent unused argument compilation warnings with some compilers.
- Improve the update of the SystemCoreClock variable within the HAL Driver.
- Split aAPBAHBPrescTable into aAHBPrescTable and aAPBPrescTable.
- Reduce HSE_STARTUP_TIMEOUT from 5s to 100ms.
- Reduce MSI_TIMEOUT_VALUE from 100ms to 2ms.
- Reduce HSI_TIMEOUT_VALUE from 100ms to 2ms.
- Reduce LSI_TIMEOUT_VALUE from 100ms to 2ms.
- Reduce PLL_TIMEOUT_VALUE from 100ms to 2ms.
- CORTEX:
- __HAL_CORTEX_SYSTICKCLK_CONFIG is now deprecated. Prefer using HAL_SYSTICK_CLKSourceConfig function.
- FLASH:
- Correct issue preventing Cat.1 devices to write data in EEPROM.
- I2C:
- Add NACK management during wait on flag treatment.
- Update the state machine.
- It is now possible to use the I2C transmission with a data size of 0.
- RCC:
- Optimize HAL_RCC_ClockConfig.
- LSEON is reset only if required inside HAL_RCC_OscConfig.
- RCC HSE pre-scaler reconfiguration for LCD/RTC peripherical is now possible.
- Backup domain are no more reseted when RTC clock source is changed from reset value.
- SMARTCARD:
- Update description of GuardTime and Prescaler fields in SMARTCARD_InitTypeDef structure.
- UART:
- HAL_LIN_SendBreak() now use IS_UART_LIN_INSTANCE instead of IS_UART_INSTANCE.
- Correct the UART_BRR_SAMPLING8 macro in the case of cary handling.
V1.1.2 / 09-October-2015
Main Changes - Maintenance release to fix known defects and enhancements implementation.
- ADC:
- The ADC internal macro "IS_ADC_RANGE" is modified to take into account the ADC resolution.
- The function HAL_ADC_PollForEvent, in case of timeout, returns HAL_TIMEOUT instead of HAL_ERROR.
- HAL_ADC_Init
set the ADC handle in state HAL_ADC_ERROR_INTERNAL if the user try to
initialize the ADC in DiscontinuousConvMode and ContinuousConvMode
simultaneously, which is not possible.
- Enhance the check for ScanConvMode in HAL_ADC_Init.
- Cortex:
- Corrected Misra error (MISRA C 2004 rule 10.5).
- CRC:
- Corrected the macro __HAL_CRC_SET_IDR.
- GPIO:
- corrected the macro GPIO_GET_INDEX.
- To insure the same naming accross all STM32 families (F4, F2, F0, F1, L1 etc):
- Replacing GPIO_SPEED_VERY_LOW by GPIO_SPEED_FREQ_LOW.
- Replacing GPIO_SPEED_LOW by GPIO_SPEED_FREQ_MEDIUM.
- Replacing GPIO_SPEED_MEDIUM by GPIO_SPEED_FREQ_HIGH.
- Replacing GPIO_SPEED_HIGH by GPIO_SPEED_FREQ_VERY_HIGH.
- IRDA:
- Corrected the HAL_IRDA_IRQHandler which was preventing to handle 2 simultaneous errors.
- I2C:
- Corrected an issue where the STOP bit was not cleared after reading data depending on APB/I2C frequency.
- I2S:
- HAL_I2S_Transmit() is updated to keep the check on busy flag only for the slave.
- PCD
- Corrected issue when using USB Device double-buffering mode for IN endpoints.
- do{ ... } while(0) is used for multi statement macros.
- PWR:
- Corrected Misra error (MISRA C 2004 rule 14.3).
- RCC:
- In HAL_RCCEx_PeriphCLKConfig, the reset of the backup domain occurs only if the RTC clock source has been changed.
- __HAL_RCC_HSE_CONFIG is updated to remove the transition from RCC_HSE_ON to RCC_HSE_BYPASS.
- Adding the macro __HAL_RCC_MCO1_CONFIG to configure the MCO clock.
- Adding the macros and function to handle LSE CSS interrupt.
- Corrected an error in HAL_RCC_GetSysClockFreq when the PLL is used as system clock. An incorrect sysclockfreq was returned.
- RTC:
- RTC_TimeTypeDef.SecondFraction
field is added to specifies the range or granularity of Sub Second
register content.This field will be used only by HAL_RTC_GetTime
function.
- HAL_RTC_GetTime is updated to take into account the new field RTC_TimeTypeDef.SecondFraction.
- Corrected error in __HAL_RTC_TAMPER_TIMESTAMP_EXTI_GET_FLAG macro.
- Add additionnal checks on WUTWF flag in HAL_RTCEx_SetWakeUpTimer_IT.
- do{ ... } while(0) is used for multi statement macros.
- USART:
- Corrected the HAL_USART_IRQHandler which was preventing to handle 2 simultaneous errors.
- UART:
- Removed
the activation of ERR IT from HAL_UART_Transmit_IT() which
was leading to HAL_UART_IRQ_Handler wrong behavior.
- Corrected the HAL_UART_IRQHandler which was preventing to handle 2 simultaneous errors.
- SMARTCARD:
- Corrected the HAL_SMARTCARD_IRQHandler which was preventing to handle 2 simultaneous errors.
V1.1.1 / 31-March-2015
Main Changes - Include path changes for compilation under Unix environment.
- Update drivers to be C++ compliant.
Interface Changes - CORTEX :
- Added interface to access MPU features (refer to stm32l1xx_hal_cortex.h)
- CRYP :
- Added Instance field in CRYP_HandleTypeDef.
- HAL CRYP driver
updated to support multi instance, so user must ensure that the new
parameter Instance is initialized in his application(CRYPHandle.Instance
= CRYP)
- FLASH :
- Changing field name of NOR_CFITypeDef (CFI1X changed to CFI1_X)
- PCD :
- HAL_PCD_ActiveRemoteWakeup renamed HAL_PCD_ActivateRemoteWakeup
- HAL_PCD_DeActiveRemoteWakeup renamed to HAL_PCD_DeActivateRemoteWakeup
- PWR :
- HAL_PWR_PVDConfig renamed HAL_PWR_ConfigPVD
- Added new interfaces:
- void HAL_PWR_EnableSleepOnExit(void);
- void HAL_PWR_DisableSleepOnExit(void);
- void HAL_PWR_EnableSEVOnPend(void);
- void HAL_PWR_DisableSEVOnPend(void);
- void HAL_PWR_EnableSleepOnExit(void);
- uint32_t HAL_PWREx_GetVoltageRange(void);
- RCC :
- HAL_RCC_CCSCallback renamed to HAL_RCC_CSSCallback
- Adding HAL_RCCEx_GetPeriphCLKFreq interface.
- PCD:
- HAL_PCD_ActiveRemoteWakeup renamed HAL_PCD_ActivateRemoteWakeup
- HAL_PCD_DeActiveRemoteWakeup renamed to HAL_PCD_DeActivateRemoteWakeup
- SMARTCARD:
- Removal of HAL_SMARTCARD_ReInit interface.
- SPI:
- HAL_SPI_GetError now returns a uint32_t instead of HAL_SPI_ErrorTypeDef.
- TIMER:
- Adding interface HAL_TIM_SlaveConfigSynchronization_IT
- UART:
- The field ErrorCode of UART_HandleTypeDef is changed from HAL_UART_ErrorTypeDef to uint32_t.
- USART:
- The field ErrorCode of UART_HandleTypeDef is changed from HAL_UART_ErrorTypeDef to uint32_t.
V1.1.0 / 16-January-2015
Main Changes
- Add support of new STM32L1 eXtended devices - STM32l151xDX, STM32l152xDX & STM32l62xDX
- HAL generic : Add eXtended Devices switchs when needed
- STM32L151xDX has same features than STM32L151xE
- STM32L152xDX has same features than STM32L152xE
- STM32L162xDX has same features than STM32L162xE
- HAL FLASH :
- add support of new STM32L1 Devices (same as other HAL)
- stm32l1xx_hal_flash_ex.c
: Specific treatment done in HAL_FLASHEx_Erase &
HAL_FLASHEx_Erase_IT as memory is not continuous between 2 banks, user
should perform pages erase by bank only
V1.0.0 / 05-September-2014
Main Changes
License
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions
in binary form must reproduce the above copyright notice, this list of
conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
- Neither the name of STMicroelectronics nor the names of its contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
For
complete documentation on STM32
Microcontrollers visit www.st.com/STM32
|