• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

drivers/11-Mar-2024-257,386112,412

soc/11-Mar-2024-323,150282,408

CMakeLists.txtD11-Mar-20248.1 KiB10199

LICENSE.mdD11-Mar-20241.5 KiB2822

READMED11-Mar-20242 KiB7354

release_note.htmlD11-Mar-2024495.6 KiB10,83810,834

README

1STM32CubeF4
2###########
3
4Origin:
5   ST Microelectronics
6   http://www.st.com/en/embedded-software/stm32cubef4.html
7
8Status:
9   version v1.27.1
10
11Purpose:
12   ST Microelectronics official MCU package for STM32F4 series.
13
14Description:
15   This package is an extract of official STM32CubeF4 package written by ST Microelectronics.
16   It is composed of STM32Cube hardware abstraction layer (HAL) and low layer (LL) plus a set
17   of CMSIS headers files, one for each SoC in STM32F4 series.
18
19Dependencies:
20    None.
21
22URL:
23   https://github.com/STMicroelectronics/STM32CubeF4
24
25Commit:
26   52757b5e33259a088509a777a9e3a5b971194c7d
27
28Maintained-by:
29   External
30
31License:
32   BSD-3-Clause
33
34License Link:
35   https://opensource.org/licenses/BSD-3-Clause
36
37Patch List:
38
39   *Changes from official delivery:
40    -dos2unix applied
41    -trailing white spaces removed
42
43   *Disable i2c HAL
44     Due to conflict with zephyr i2c.h (I2C_SPEED_STANDARD and I2C_SPEED_FAST
45     redefinition), deactivate STM32Cube I2C HAL. This raises no issue since
46     LL API is currently used for stm32 I2C driver.
47    Impacted files:
48     drivers/include/stm32f4xx_hal_conf.h
49    ST Bug tracker ID: NA. Not a stm32cube issue
50
51   *Provision to enable hal & ll asserts added
52    -Added stm32cube/stm32f4xx/drivers/include/stm32_assert.h
53    -Removed unused stm32cube/stm32f4xx/drivers/include/stm32_assert_template.h
54
55   *Unused variable in HAL_QSPI_Command_IT
56    -removed tickstart variable declaration
57    Impacted files:
58     drivers/src/stm32f4xx_hal_qspi.c
59    ST Bug tracker ID: 112664
60
61   *Enable legacy ethernet driver using HAL_ETH_LEGACY_MODULE_ENABLED
62    This will have to be removed once Zephyr driver is migrated ot the new
63    Cube HAL ethernet API.
64
65   *Wrap define UNUSED with an ifndef
66     This will prevent a compiler warning for the case the UNUSED macro
67     is already defined elsewhere in the project
68     Impacted files:
69      drivers/include/stm32f4xx_hal_def.h
70     ST Internal Reference: 136825
71
72   See release_note.html from STM32Cube
73