zephyr/ext/hal/st/stm32cube/stm32f1xx
Erwan Gouriou 15c229655e ext/hal/st: stm32cube: Update License Link for stm23cube packages
License link provided in stm32cube abstract packages was not
reflecting the actual license in use for these packages.
Update the link to BSD 3-Clause official.

Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
2019-05-06 08:54:14 -05:00
..
drivers
soc
CMakeLists.txt
README ext/hal/st: stm32cube: Update License Link for stm23cube packages 2019-05-06 08:54:14 -05:00

README

STM32CubeF1
###########

Origin:
   ST Microelectronics
   http://www.st.com/en/embedded-software/stm32cubef1.html

Status:
   version 1.6.1

Purpose:
   ST Microelectronics official MCU package for STM32F1 series.

Description:
   This package is an extract of official STM32CubeF1 package written by ST Microelectronics.
   It is composed of STM32Cube hardware abstraction layer (HAL) and low layer (LL) plus a set
   of CMSIS headers files, one for each SoC in STM32F1 series.

Dependencies:
    None.

URL:
   http://www.st.com/en/embedded-software/stm32cubef1.html

commit:
   version 1.6.1

Maintained-by:
   External

License:
   BSD-3-Clause

License Link:
   https://opensource.org/licenses/BSD-3-Clause

Patch List:

   *Changes from official delivery:
    -dos2unix applied
    -trailing white spaces removed

   *Disable i2c HAL
     Due to conflict with zephyr i2c.h (I2C_SPEED_STANDARD and I2C_SPEED_FAST
     redefinition), deactivate STM32Cube I2C HAL. This raises no issue since
     LL API is currently used for stm32 I2C driver.
     Impacted files:
      drivers/include/stm32f1xx_hal_conf.h
     ST Bug tracker ID: NA. Not a stm32cube issue

    *Update LSI_VALUE to 40 KHz
     Impacted files:
      drivers/include/stm32f1xx_ll_rcc.h
     ST Bug tracker ID: 37419

    *Use of (__packed uint32_t *) produces warning
      Using GNU 8.2.0, (__packed uint32_t *) generates warning.
      Replace with CMSIS macros __UNALIGNED_UINT32_READ and
      __UNALIGNED_UINT32_WRITE.
     Impacted files:
      drivers/include/stm32f1xx_ll_usb.c
     ST Bug tracker ID: 61323

    *Fix warnings for extraneous parentheses
      Using clang 7.0.1, if ((htim->State == HAL_TIM_STATE_BUSY))
      generates warnings.  Remove the extra parentheses
     Impacted files:
      drivers/src/stm32f1xx_hal_tim.c
      drivers/src/stm32f1xx_hal_tim_ex.c
     ST Bug tracker ID: 63614