2018-01-16 09:53:28 +01:00
|
|
|
The current version supported in Zephyr for STM32L4 Cube is V1.10.0
|
2017-09-15 09:45:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
Patch List:
|
|
|
|
===========
|
|
|
|
|
|
|
|
*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.
|
2017-09-15 16:26:20 +02:00
|
|
|
Impacted files:
|
|
|
|
drivers/include/stm32l4xx_ll_spi.h
|
2017-09-15 09:45:08 +02:00
|
|
|
ST Bug tracker ID: 13359
|