File tree Expand file tree Collapse file tree 5 files changed +31
-6
lines changed Expand file tree Collapse file tree 5 files changed +31
-6
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,26 @@ <h1 id="purpose">Purpose</h1>
3232< div class ="col-sm-12 col-lg-8 ">
3333< h1 id ="update-history "> < strong > Update History</ strong > </ h1 >
3434< div class ="collapse ">
35- < input type ="checkbox " id ="collapse-section19 " Checked aria-hidden ="true "> < label for ="collapse-section19 " aria-hidden ="true "> < strong > V1.3.2 / 25-April-2025</ strong > </ label >
35+ < input type ="checkbox " id ="collapse-section20 " Checked aria-hidden ="true "> < label for ="collapse-section20 " aria-hidden ="true "> < strong > V1.3.3 / 23-July-2025</ strong > </ label >
36+ < div >
37+ < p > < strong > Main Changes</ strong > </ p >
38+ < ul >
39+ < li > < strong > HAL</ strong >
40+ < ul >
41+ < li > < strong > HAL SDMMC</ strong >
42+ < ul >
43+ < li > Update to use dedicated MMC defines in the HAL SDMMC driver.</ li >
44+ </ ul > </ li >
45+ < li > < strong > HAL FLASH</ strong >
46+ < ul >
47+ < li > Initialize the ‘pFlash’ variable with default values.</ li >
48+ </ ul > </ li >
49+ </ ul > </ li >
50+ </ ul >
51+ </ div >
52+ </ div >
53+ < div class ="collapse ">
54+ < input type ="checkbox " id ="collapse-section19 " aria-hidden ="true "> < label for ="collapse-section19 " aria-hidden ="true "> < strong > V1.3.2 / 25-April-2025</ strong > </ label >
3655< div >
3756< p > < strong > Main Changes</ strong > </ p >
3857< ul >
Original file line number Diff line number Diff line change 5050 * @{
5151 */
5252/**
53- * @brief STM32F7xx HAL Driver version number V1.3.2
53+ * @brief STM32F7xx HAL Driver version number V1.3.3
5454 */
5555#define __STM32F7xx_HAL_VERSION_MAIN (0x01) /*!< [31:24] main version */
5656#define __STM32F7xx_HAL_VERSION_SUB1 (0x03) /*!< [23:16] sub1 version */
57- #define __STM32F7xx_HAL_VERSION_SUB2 (0x02 ) /*!< [15:8] sub2 version */
57+ #define __STM32F7xx_HAL_VERSION_SUB2 (0x03 ) /*!< [15:8] sub2 version */
5858#define __STM32F7xx_HAL_VERSION_RC (0x00) /*!< [7:0] release candidate */
5959#define __STM32F7xx_HAL_VERSION ((__STM32F7xx_HAL_VERSION_MAIN << 24)\
6060 |(__STM32F7xx_HAL_VERSION_SUB1 << 16)\
Original file line number Diff line number Diff line change 109109 * @{
110110 */
111111/* Variable used for Erase sectors under interruption */
112- FLASH_ProcessTypeDef pFlash ;
112+ FLASH_ProcessTypeDef pFlash = {.ProcedureOnGoing = FLASH_PROC_NONE ,
113+ .NbSectorsToErase = 0U ,
114+ .VoltageForErase = FLASH_VOLTAGE_RANGE_1 ,
115+ .Sector = 0U ,
116+ .Address = 0U ,
117+ .Lock = HAL_UNLOCKED ,
118+ .ErrorCode = HAL_FLASH_ERROR_NONE };
113119/**
114120 * @}
115121 */
Original file line number Diff line number Diff line change @@ -1641,7 +1641,7 @@ void HAL_MMC_IRQHandler(MMC_HandleTypeDef *hmmc)
16411641 }
16421642 }
16431643 }
1644- else if (((context & SD_CONTEXT_READ_SINGLE_BLOCK ) != 0U ) || ((context & SD_CONTEXT_READ_MULTIPLE_BLOCK ) != 0U ))
1644+ else if (((context & MMC_CONTEXT_READ_SINGLE_BLOCK ) != 0U ) || ((context & MMC_CONTEXT_READ_MULTIPLE_BLOCK ) != 0U ))
16451645 {
16461646 if (hmmc -> hdmarx != NULL )
16471647 {
Original file line number Diff line number Diff line change 66 * STM32F2: 1.2.9
77 * STM32F3: 1.5.8
88 * STM32F4: 1.8.5
9- * STM32F7: 1.3.2
9+ * STM32F7: 1.3.3
1010 * STM32G0: 1.4.6
1111 * STM32G4: 1.2.5
1212 * STM32H5: 1.5.0
You can’t perform that action at this time.
0 commit comments