Commit 1b4c40b8 authored by Erwan Gouriou's avatar Erwan Gouriou Committed by Kumar Gala
Browse files

stm32cube: update stm32f2 to version V1.9.2

Update Cube version for STM32F2xx series
on https://github.com/STMicroelectronics


from version v1.9.1
to version v1.9.2

Signed-off-by: default avatarErwan Gouriou <erwan.gouriou@linaro.org>
parent 8f287a57
Loading
Loading
Loading
Loading
+2 −10
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ Origin:
   http://www.st.com/en/embedded-software/stm32cubef2.html

Status:
   version v1.9.1
   version v1.9.2

Purpose:
   ST Microelectronics official MCU package for STM32F2 series.
@@ -23,7 +23,7 @@ URL:
   https://github.com/STMicroelectronics/STM32CubeF2

Commit:
   779848644f491336c7990e98031663ecadab2cc9
   edfdc17943f4d0ffd1e30596b122005d86e6fde5

Maintained-by:
   External
@@ -40,14 +40,6 @@ Patch List:
    -dos2unix applied
    -trailing white spaces removed

    *Extend public SetFlashLatency API to all families
     The LL_SetFlashLatency public API is now defined for families
     beyond G4, L4 and L5. The private function has been made public.
    Impacted files:
     drivers/include/stm32f2xx_ll_utils.h
     drivers/src/stm32f2xx_ll_utils.c
    ST Bug tracker ID: 76119

   *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
+0 −6
Original line number Diff line number Diff line
@@ -33,12 +33,6 @@
/* ########################## Module Selection ############################## */
/**
  * @brief This is the list of modules to be used in the HAL driver
  *
  *     Note:
  *     	HAL_I2C_MODULE_ENABLED had to be disabled due to the HAL
  *     	redefining I2C_SPEED_STANDARD and I2C_SPEED_FAST when the
  *     	I2C LL driver was enabled.
  *
  */
#define HAL_MODULE_ENABLED
#define HAL_ADC_MODULE_ENABLED
+2 −2
Original line number Diff line number Diff line
@@ -50,11 +50,11 @@
  * @{
  */
/**
  * @brief STM32F2xx HAL Driver version number V1.2.5
  * @brief STM32F2xx HAL Driver version number V1.2.6
  */
#define __STM32F2xx_HAL_VERSION_MAIN   0x01U /*!< [31:24] main version */
#define __STM32F2xx_HAL_VERSION_SUB1   0x02U /*!< [23:16] sub1 version */
#define __STM32F2xx_HAL_VERSION_SUB2   0x05U /*!< [15:8]  sub2 version */
#define __STM32F2xx_HAL_VERSION_SUB2   0x06U /*!< [15:8]  sub2 version */
#define __STM32F2xx_HAL_VERSION_RC     0x00U /*!< [7:0]  release candidate */
#define __STM32F2xx_HAL_VERSION         ((__STM32F2xx_HAL_VERSION_MAIN << 24U)\
                                        |(__STM32F2xx_HAL_VERSION_SUB1 << 16U)\
+1 −1
Original line number Diff line number Diff line
@@ -3043,7 +3043,7 @@ HAL_StatusTypeDef HAL_I2C_Mem_Write_DMA(I2C_HandleTypeDef *hi2c, uint16_t DevAdd
        if (I2C_RequestMemoryWrite(hi2c, DevAddress, MemAddress, MemAddSize, I2C_TIMEOUT_FLAG, tickstart) != HAL_OK)
        {
          /* Abort the ongoing DMA */
          dmaxferstatus = HAL_DMA_Abort_IT(hi2c->hdmarx);
          dmaxferstatus = HAL_DMA_Abort_IT(hi2c->hdmatx);

          /* Prevent unused argument(s) compilation and MISRA warning */
          UNUSED(dmaxferstatus);
+1535 −4

File changed.

Preview size limit exceeded, changes collapsed.

Loading