zephyr/ext/hal/st/stm32cube/stm32f3xx
Yannis Damigos 213df22c99 ext: hal: stm32cube: Fix LSI_VALUE for F1, F3 families
This patch sets the correct LSI_VALUE, according to
STM32F3 reference manual's (RM0316) section 9.2.5 and
STM32F1 reference manual's (RM0008) section 7.2.5.

Signed-off-by: Yannis Damigos <giannis.damigos@gmail.com>
2017-10-20 12:28:11 -05:00
..
drivers ext: hal: stm32cube: Fix LSI_VALUE for F1, F3 families 2017-10-20 12:28:11 -05:00
soc ext: stm32cube: update stm32f3xx cube version 2017-09-25 12:31:59 -05:00
README ext: hal: stm32cube: Fix LSI_VALUE for F1, F3 families 2017-10-20 12:28:11 -05:00

README

The current version supported in Zephyr for STM32F3 Cube is V1.7.0

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

*Current implementation of LL_SPI_TransmitData16 on F3/F7/L4 family
  generates following warning:
  "warning: dereferencing type-punned pointer will break strict-aliasing
  rules [-Wstrict-aliasing]"
  Besides being forbidden by rule, this cast is not needed, as register is
  16 bits wide. Modification has been tested on L4 SoC.
  stm32yyxx_ll_spi.h being included in soc.h file, warning is generated
  at each compiled object, this commit allows a clean build.
Impacted files:
  drivers/include/stm32f3xx_ll_spi.h
ST Bug tracker ID: 13359

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