diff --git a/Makefile b/Makefile index ecaee0a6f2..fdcc468d1d 100644 --- a/Makefile +++ b/Makefile @@ -757,6 +757,7 @@ FC_SRC = \ sensors/gyroanalyse.c \ sensors/initialisation.c \ blackbox/blackbox.c \ + blackbox/blackbox_encoding.c \ blackbox/blackbox_io.c \ cms/cms.c \ cms/cms_menu_blackbox.c \ @@ -982,10 +983,9 @@ STM32F7xx_COMMON_SRC = \ drivers/bus_i2c_hal.c \ drivers/dma_stm32f7xx.c \ drivers/gpio_stm32f7xx.c \ - drivers/inverter.c \ drivers/light_ws2811strip_hal.c \ drivers/bus_spi_hal.c \ - drivers/pwm_output_stm32f7xx.c \ + drivers/pwm_output_dshot_hal.c \ drivers/timer_hal.c \ drivers/timer_stm32f7xx.c \ drivers/system_stm32f7xx.c \ diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h b/lib/main/STM32F7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h index e4b3529330..3f90e3a03c 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32_hal_legacy.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief This file contains aliases definition for the STM32Cube HAL constants * macros and functions maintained for legacy purpose. ****************************************************************************** diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32_assert_template.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32_assert_template.h index fb2e70f083..b08bbd3490 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32_assert_template.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32_assert_template.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32_assert.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief STM32 assert template file. * This file should be copied to the application folder and renamed * to stm32_assert.h. diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h index a3209cfa66..87b9554401 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief This file contains all the functions prototypes for the HAL * module driver. ****************************************************************************** diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_adc.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_adc.h index 2ba37498cc..687f9cda02 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_adc.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_adc.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_adc.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of ADC HAL extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_adc_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_adc_ex.h index d2cd1a516f..e1aac44f92 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_adc_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_adc_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_adc.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of ADC HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_can.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_can.h index b5d0b2aff4..dc1ea3cae4 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_can.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_can.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_can.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of CAN HAL module. ****************************************************************************** * @attention @@ -68,9 +68,13 @@ typedef enum HAL_CAN_STATE_READY = 0x01U, /*!< CAN initialized and ready for use */ HAL_CAN_STATE_BUSY = 0x02U, /*!< CAN process is ongoing */ HAL_CAN_STATE_BUSY_TX = 0x12U, /*!< CAN process is ongoing */ - HAL_CAN_STATE_BUSY_RX = 0x22U, /*!< CAN process is ongoing */ - HAL_CAN_STATE_BUSY_TX_RX = 0x32U, /*!< CAN process is ongoing */ - HAL_CAN_STATE_TIMEOUT = 0x03U, /*!< Timeout state */ + HAL_CAN_STATE_BUSY_RX0 = 0x22U, /*!< CAN process is ongoing */ + HAL_CAN_STATE_BUSY_RX1 = 0x32U, /*!< CAN process is ongoing */ + HAL_CAN_STATE_BUSY_TX_RX0 = 0x42U, /*!< CAN process is ongoing */ + HAL_CAN_STATE_BUSY_TX_RX1 = 0x52U, /*!< CAN process is ongoing */ + HAL_CAN_STATE_BUSY_RX0_RX1 = 0x62U, /*!< CAN process is ongoing */ + HAL_CAN_STATE_BUSY_TX_RX0_RX1 = 0x72U, /*!< CAN process is ongoing */ + HAL_CAN_STATE_TIMEOUT = 0x03U, /*!< CAN in Timeout state */ HAL_CAN_STATE_ERROR = 0x04U /*!< CAN error state */ }HAL_CAN_StateTypeDef; @@ -220,17 +224,19 @@ typedef struct */ typedef struct { - CAN_TypeDef *Instance; /*!< Register base address */ + CAN_TypeDef *Instance; /*!< Register base address */ - CAN_InitTypeDef Init; /*!< CAN required parameters */ + CAN_InitTypeDef Init; /*!< CAN required parameters */ - CanTxMsgTypeDef* pTxMsg; /*!< Pointer to transmit structure */ + CanTxMsgTypeDef* pTxMsg; /*!< Pointer to transmit structure */ - CanRxMsgTypeDef* pRxMsg; /*!< Pointer to reception structure */ + CanRxMsgTypeDef* pRxMsg; /*!< Pointer to reception structure for RX FIFO0 msg */ - __IO HAL_CAN_StateTypeDef State; /*!< CAN communication state */ + CanRxMsgTypeDef* pRx1Msg; /*!< Pointer to reception structure for RX FIFO1 msg */ - HAL_LockTypeDef Lock; /*!< CAN locking object */ + __IO HAL_CAN_StateTypeDef State; /*!< CAN communication state */ + + HAL_LockTypeDef Lock; /*!< CAN locking object */ __IO uint32_t ErrorCode; /*!< CAN Error code This parameter can be a value of @ref CAN_Error_Code */ @@ -248,16 +254,19 @@ typedef struct /** @defgroup CAN_Error_Code CAN Error Code * @{ */ -#define HAL_CAN_ERROR_NONE 0x00U /*!< No error */ -#define HAL_CAN_ERROR_EWG 0x01U /*!< EWG error */ -#define HAL_CAN_ERROR_EPV 0x02U /*!< EPV error */ -#define HAL_CAN_ERROR_BOF 0x04U /*!< BOF error */ -#define HAL_CAN_ERROR_STF 0x08U /*!< Stuff error */ -#define HAL_CAN_ERROR_FOR 0x10U /*!< Form error */ -#define HAL_CAN_ERROR_ACK 0x20U /*!< Acknowledgment error */ -#define HAL_CAN_ERROR_BR 0x40U /*!< Bit recessive */ -#define HAL_CAN_ERROR_BD 0x80U /*!< LEC dominant */ -#define HAL_CAN_ERROR_CRC 0x100U /*!< LEC transfer error */ +#define HAL_CAN_ERROR_NONE 0x00000000U /*!< No error */ +#define HAL_CAN_ERROR_EWG 0x00000001U /*!< EWG error */ +#define HAL_CAN_ERROR_EPV 0x00000002U /*!< EPV error */ +#define HAL_CAN_ERROR_BOF 0x00000004U /*!< BOF error */ +#define HAL_CAN_ERROR_STF 0x00000008U /*!< Stuff error */ +#define HAL_CAN_ERROR_FOR 0x00000010U /*!< Form error */ +#define HAL_CAN_ERROR_ACK 0x00000020U /*!< Acknowledgment error */ +#define HAL_CAN_ERROR_BR 0x00000040U /*!< Bit recessive */ +#define HAL_CAN_ERROR_BD 0x00000080U /*!< LEC dominant */ +#define HAL_CAN_ERROR_CRC 0x00000100U /*!< LEC transfer error */ +#define HAL_CAN_ERROR_FOV0 0x00000200U /*!< FIFO0 overrun error */ +#define HAL_CAN_ERROR_FOV1 0x00000400U /*!< FIFO1 overrun error */ +#define HAL_CAN_ERROR_TXFAIL 0x00000800U /*!< Transmit failure */ /** * @} */ diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cec.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cec.h index 87c30a367b..34f228fc2e 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cec.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cec.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_cec.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of CEC HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_conf_template.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_conf_template.h index 4ae68a18ac..d0afcc990d 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_conf_template.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_conf_template.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_conf_template.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief HAL configuration template file. * This file should be copied to the application folder and renamed * to stm32f7xx_hal_conf.h. diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h index 92db69900a..09dc50747d 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cortex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_cortex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of CORTEX HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_crc.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_crc.h index b228db42e1..8390c80546 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_crc.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_crc.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_crc.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of CRC HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_crc_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_crc_ex.h index b0bde5f24a..bc285b461e 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_crc_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_crc_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_crc_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of CRC HAL extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cryp.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cryp.h index 04c6dee9b1..b5b0e444fb 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cryp.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cryp.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_cryp.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of CRYP HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cryp_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cryp_ex.h index f2f3393c95..293f01febc 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cryp_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_cryp_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_cryp_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of CRYP HAL Extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dac.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dac.h index d980e307e0..f2cda70f94 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dac.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dac.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_dac.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of DAC HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dac_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dac_ex.h index c15d8dd3d0..1c39f70818 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dac_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dac_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_dac.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of DAC HAL Extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dcmi.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dcmi.h index 4bc66a7aab..ef68e42bde 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dcmi.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dcmi.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_dcmi.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of DCMI HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dcmi_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dcmi_ex.h index a8133c3332..c1a4bb1f1e 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dcmi_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dcmi_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_dcmi_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of DCMI Extension HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h index abdce3d27c..f086ddc323 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_def.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_def.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief This file contains HAL common defines, enumeration, macros and * structures definitions. ****************************************************************************** diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dfsdm.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dfsdm.h index b7adde3fd5..58a8a2c3aa 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dfsdm.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dfsdm.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_dfsdm.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of DFSDM HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h index 12c671ab1b..efd7e6aadb 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_dma.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of DMA HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma2d.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma2d.h index 4c2c549b50..1965abb99f 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma2d.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma2d.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_dma2d.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of DMA2D HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h index 1c03fbe09e..354c9f1894 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dma_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_dma_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of DMA HAL extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dsi.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dsi.h index f170b88c6e..3a99c3e553 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dsi.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_dsi.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_dsi.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of DSI HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_eth.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_eth.h index 9af5edd82d..4c0f9bc80a 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_eth.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_eth.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_eth.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of ETH HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h index 6aebf88d6b..e28a9e7a06 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_flash.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of FLASH HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h index a7ef785b1a..1f56f6c3ef 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_flash_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_flash_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of FLASH HAL Extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h index 97dfceb2c6..6a0b58e4e3 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_gpio.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of GPIO HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h index 6c2762c20a..a38db167aa 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_gpio_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_gpio_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of GPIO HAL Extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_hash.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_hash.h index cb4e1f9e2e..0619c8d5e4 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_hash.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_hash.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_hash.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of HASH HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_hash_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_hash_ex.h index 4fc605d717..2b8c88772e 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_hash_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_hash_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_hash_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of HASH HAL Extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_hcd.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_hcd.h index ef1584e94f..fc109706fc 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_hcd.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_hcd.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_hcd.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of HCD HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h index b5ae43ac8d..891d0f1b89 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_i2c.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of I2C HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h index 17ffba1bbb..326bec93c8 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2c_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_i2c_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of I2C HAL Extended module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2s.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2s.h index d6e7f9a29e..f782ea32ef 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2s.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_i2s.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_i2s.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of I2S HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_irda.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_irda.h index a63143d6ff..2b280f36c1 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_irda.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_irda.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_irda.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of IRDA HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_irda_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_irda_ex.h index f58591d9ca..2bc17300a2 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_irda_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_irda_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_irda_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of IRDA HAL Extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_iwdg.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_iwdg.h index c4650a582a..50f2879281 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_iwdg.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_iwdg.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_iwdg.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of IWDG HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_jpeg.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_jpeg.h index 19c1d265b6..c8aefe5b66 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_jpeg.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_jpeg.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_jpeg.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of JPEG HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_lptim.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_lptim.h index f0d0b8e132..151e77fb4d 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_lptim.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_lptim.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_lptim.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of LPTIM HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_ltdc.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_ltdc.h index c1d16da276..820e78720a 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_ltdc.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_ltdc.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_ltdc.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of LTDC HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_ltdc_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_ltdc_ex.h index 5e74f39593..4972f26a5a 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_ltdc_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_ltdc_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_ltdc_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of LTDC HAL Extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_mdios.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_mdios.h index 69c9554095..a74ab443d3 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_mdios.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_mdios.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_mdios.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of MDIOS HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_mmc.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_mmc.h index 07faa9a6bd..5d4ec6ea70 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_mmc.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_mmc.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_mmc.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of MMC HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_nand.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_nand.h index 037607ed11..4b11c427e7 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_nand.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_nand.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_nand.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of NAND HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_nor.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_nor.h index 03715c4a9b..e19dc3825f 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_nor.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_nor.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_nor.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of NOR HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pcd.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pcd.h index e300243af0..88755374fc 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pcd.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pcd.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_pcd.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of PCD HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pcd_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pcd_ex.h index 7c9b359778..91a18dcd8f 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pcd_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pcd_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_pcd_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of PCD HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h index aac70d6d51..2633f00944 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_pwr.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of PWR HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h index 8aff4ffd50..2b36ef5c46 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_pwr_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of PWR HAL Extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_qspi.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_qspi.h index 0a122e7533..38c6fc7a55 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_qspi.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_qspi.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_qspi.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of QSPI HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h index f2c81fb9c0..af318d10bd 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_rcc.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of RCC HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h index 556f69d679..4532820b75 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rcc_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_rcc_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of RCC HAL Extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h index f0fd7f6356..d9863de94e 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_rng.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of RNG HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h index 8168b65639..babfab8c0e 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_rtc.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of RTC HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h index 8647100e83..47d338fad3 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_rtc_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of RTC HAL Extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sai.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sai.h index 80897984a2..09c32bee76 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sai.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sai.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_sai.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of SAI HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sai_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sai_ex.h index 059697263a..54774256ef 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sai_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sai_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_sai_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of SAI Extension HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h index c6ff30a8ed..b6be1a394f 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sd.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_sd.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of SD HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sdram.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sdram.h index e2a1c8cecc..6d94d06f46 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sdram.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sdram.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_sdram.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of SDRAM HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_smartcard.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_smartcard.h index d7278e5932..9c64efac70 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_smartcard.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_smartcard.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_smartcard.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of SMARTCARD HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_smartcard_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_smartcard_ex.h index 883ae0985f..1c3ea50612 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_smartcard_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_smartcard_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_smartcard_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of SMARTCARD HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_smbus.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_smbus.h index fd86b1cdda..91aecb18f8 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_smbus.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_smbus.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_smbus.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of SMBUS HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spdifrx.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spdifrx.h index d1e6103418..72bc3157a8 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spdifrx.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spdifrx.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_spdifrx.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of SPDIFRX HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h index 9bc647284d..efe31c6782 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_spi.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of SPI HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sram.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sram.h index ec3fc9e4a0..6aeafb28c8 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sram.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_sram.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_sram.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of SRAM HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h index ce7bf47fd6..467bc13d5f 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_tim.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of TIM HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h index cb89b9eeca..396cae828c 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_tim_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of TIM HAL Extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h index c72c4906cf..154343099b 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_uart.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of UART HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h index f19cbc98a8..74c1799736 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_uart_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of UART HAL Extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_usart.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_usart.h index 56f94fa32d..4885867ebd 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_usart.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_usart.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_usart.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of USART HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_usart_ex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_usart_ex.h index 458d7417f2..8dccebea64 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_usart_ex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_usart_ex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_usart_ex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of USART HAL Extension module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_wwdg.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_wwdg.h index 78ee04b991..8a1569b5f3 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_wwdg.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_wwdg.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_hal_wwdg.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of WWDG HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_adc.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_adc.h index c3b15f2dba..696628ad62 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_adc.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_adc.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_adc.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of ADC LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h index 650741f3f5..2915350f3f 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_bus.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_bus.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of BUS LL module. @verbatim diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_cortex.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_cortex.h index 452d3403e2..f8a5d2a3f8 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_cortex.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_cortex.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_cortex.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of CORTEX LL module. @verbatim ============================================================================== diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_crc.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_crc.h index 074cb344b5..f100cadd38 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_crc.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_crc.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_crc.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of CRC LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dac.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dac.h index 978637e0ae..33d9775a20 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dac.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dac.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_dac.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of DAC LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h index a4128e686f..7907ab1fba 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_dma.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of DMA LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma2d.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma2d.h index c3914b4a06..1d0a74ff0e 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma2d.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_dma2d.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_dma2d.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of DMA2D LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h index 7a4280b50e..6800135be6 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_exti.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_exti.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of EXTI LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_fmc.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_fmc.h index f2f43cf295..dd409acaac 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_fmc.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_fmc.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_fmc.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of FMC HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h index 4b5bae97a2..830949dce7 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_gpio.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_gpio.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of GPIO LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_i2c.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_i2c.h index 6a0c2aae40..791db20c05 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_i2c.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_i2c.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_i2c.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of I2C LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_iwdg.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_iwdg.h index b21ee27ebc..3bb44a148b 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_iwdg.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_iwdg.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_iwdg.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of IWDG LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_lptim.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_lptim.h index 1ca1d36644..11ddd29ffa 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_lptim.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_lptim.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_lptim.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of LPTIM LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_pwr.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_pwr.h index 75e6174094..d37198bcd6 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_pwr.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_pwr.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_pwr.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of PWR LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rcc.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rcc.h index 0fc1de8482..b3fa6eb934 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rcc.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rcc.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_rcc.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of RCC LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rng.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rng.h index a390753be0..7857083d4f 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rng.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rng.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_rng.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of RNG LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rtc.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rtc.h index 7da6f75ee1..417ca4ce03 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rtc.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_rtc.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_rtc.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of RTC LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h index 2d777bd7ea..81fbb0d968 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_sdmmc.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_sdmmc.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of SDMMC HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h index 4d4d581520..d0b4a2088b 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_spi.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_spi.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of SPI LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_system.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_system.h index f11fb37612..b42815e5b6 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_system.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_system.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_system.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of SYSTEM LL module. @verbatim ============================================================================== diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h index 7c2ecbb8f7..476a2154ba 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_tim.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_tim.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of TIM LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_usart.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_usart.h index 9051add281..34fc793d17 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_usart.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_usart.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_usart.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of USART LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_usb.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_usb.h index 92b4088cd9..90c7debd34 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_usb.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_usb.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_usb.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of USB Core HAL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_utils.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_utils.h index a6df3078fc..5363e29353 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_utils.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_utils.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_utils.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of UTILS LL module. @verbatim ============================================================================== diff --git a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_wwdg.h b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_wwdg.h index 61b5d8fd8b..f67d03636f 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_wwdg.h +++ b/lib/main/STM32F7xx_HAL_Driver/Inc/stm32f7xx_ll_wwdg.h @@ -2,8 +2,8 @@ ****************************************************************************** * @file stm32f7xx_ll_wwdg.h * @author MCD Application Team - * @version V1.2.1 - * @date 24-March-2017 + * @version V1.2.2 + * @date 14-April-2017 * @brief Header file of WWDG LL module. ****************************************************************************** * @attention diff --git a/lib/main/STM32F7xx_HAL_Driver/Release_Notes.html b/lib/main/STM32F7xx_HAL_Driver/Release_Notes.html index 5a2372039e..859d4db1d8 100644 --- a/lib/main/STM32F7xx_HAL_Driver/Release_Notes.html +++ b/lib/main/STM32F7xx_HAL_Driver/Release_Notes.html @@ -675,7 +675,16 @@ Notes for STM32F7xx HAL Drivers -

Update History

V1.2.1 / 24-March-2017

+

Update History

V1.2.2 / 14-April-2017

+

Main +Changes

V1.2.1 / 24-March-2017

Main Changes