forked from STMicroelectronics/STM32CubeH7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Release_Notes.html
6541 lines (6541 loc) · 318 KB
/
Release_Notes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>Release Notes for STM32CubeH7 Firmware Package</title>
<style type="text/css">
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
</style>
<link rel="stylesheet" href="_htmresc/mini-st_2020.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
<link rel="icon" type="image/x-icon" href="_htmresc/favicon.png" />
</head>
<body>
<div class="row">
<div class="col-sm-12 col-lg-4">
<center>
<h1 id="release-notes-for-stm32cubeh7-firmware-package">Release Notes for <mark> STM32CubeH7 Firmware Package </mark></h1>
<p>Copyright © 2017 STMicroelectronics<br />
</p>
<a href="https://www.st.com" class="logo"><img src="_htmresc/st_logo_2020.png" alt="ST logo" /></a>
</center>
<h1 id="purpose">Purpose</h1>
<p><span style="font-weight: bold;">STMCube is an STMicroelectronics original initiative to ease developers life by reducing development efforts, time and cost.</span></p>
<p>STM32Cube covers STM32 portfolio.</p>
<p>STM32Cube Version 1.x includes:</p>
<ul>
<li><p>The STM32CubeMX, a graphical software configuration tool that allows to generate C initialization code using graphical wizards.</p></li>
<li><p>A comprehensive embedded software platform, delivered per series (such as STM32CubeH7 for STM32H7 series)</p>
<ul>
<li><p>The STM32Cube HAL, an STM32 abstraction layer embedded software, ensuring maximized portability across STM32 portfolio</p></li>
<li><p>A consistent set of middleware components such as RTOS, USB, TCP/IP, Graphics]</p></li>
</ul></li>
</ul>
<p>All embedded software utilities come with a full set of examples.</p>
<p>The STM32Cube firmware solution offers a straightforward API with a modular architecture, making it simple to fine tune custom applications and scalable to fit most requirements.</p>
<figure>
<img src="_htmresc/STM32Cube.bmp" alt="STM32Cube" /><figcaption>STM32Cube</figcaption>
</figure>
<p>The <strong>drivers</strong> provided within this package <strong>support</strong> the <strong>STM32H743/753/750/745/755/747/757/742/7A3/7B0/ 7B3/723/725/733/735/730 lines.</strong></p>
<p>The HAL and LL drivers provided within this package are compliant with MISRA-C®:2012 guidelines, and have been reviewed with a static analysis tool to eliminate possible run-time errors. Reports are available on demand.</p>
<ul>
<li>For <strong>quick getting started with the STM32CubeH7 firmware package</strong>, refer to <a href="Documentation/STM32CubeH7GettingStarted.pdf">UM2204</a> you can download firmware updates and all the latest documentation from <a href="https://www.st.com/en/microcontrollers/stm32h7-series.html?querycriteria=productId=SS1951">www.st.com/stm32cubeH7</a></li>
<li>Below links to the most useful documents
<ul>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00103685.pdf">UM1713</a>: Developing applications on STM32Cube with LwIP TCP/IP stack</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00105256.pdf">UM1720</a>: STM32Cube USB host library</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00108129.pdf">UM1734</a>: STM32Cube USB device library</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00105259.pdf">UM1721</a>: Developing Applications on STM32Cube with FatFs</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00105262.pdf">UM1722</a>: Developing Applications on STM32Cube with RTOS</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00386433.pdf">UM2204</a>: Getting started with STM32CubeH7 firmware package for STM32H7xx series</li>
<li><a href="https://www.st.com/resource/en/user_manual/dm00395407.pdf">UM2222</a>: STM32CubeH7 demonstration platform - STMicroelectronics</li>
<li><a href="https://www.st.com/content/ccc/resource/technical/document/user_manual/group1/a1/59/6c/60/d9/49/49/c3/DM00440740/files/DM00440740.pdf/jcr:content/translations/en.DM00440740.pdf">UM2298</a>: STM32Cube BSP drivers development guidelines</li>
</ul></li>
</ul>
</div>
<div class="col-sm-12 col-lg-8">
<h2 id="update-history"><strong>Update History</strong></h2>
<div class="collapse">
<input type="checkbox" id="collapse-section17" checked aria-hidden="true"> <label for="collapse-section17" aria-hidden="true"><strong>V1.11.2 / 15-March-2024</strong></label>
<div>
<h2 id="main-changes">Main Changes</h2>
<ul>
<li>General updates to fix known defects and implementation enhancements.</li>
<li>General fixes to support GCC11 and GCC12 in all STM32CubeIDE projects.</li>
<li>Upgrade of <strong>USB Device</strong> library to new version <strong>V2.11.3</strong></li>
<li>Upgrade of <strong>USB host</strong> library to new version <strong>V3.5.2</strong></li>
<li>Upgrade of <strong>MbedTLS</strong> library to new version <strong>V2.16.2 (ST modified 2023-10-24)</strong></li>
<li><p>Upgrade of <strong>FatFS</strong> library to new version <strong>Vr0.12c (ST modified 2023-11-23)</strong></p></li>
<li><strong>CMSIS</strong> updates
<ul>
<li>Update the values of the sensor calibration temperatures for H742, H743, and H753 part numbers.</li>
<li>Remove the unsupported MDMA BASE channel.</li>
<li>Align CMSIS with IP spec and product reference manual by adding missing bit fields definition.</li>
<li>Update STM32CubeIDE projects to fix the location of .size directive in startup code to allow proper size information of vector table.</li>
<li>Update the Cortex-M7 core revision.</li>
<li>Set FMC_SDCMR_MODE_2 bit field definition to 0x4.</li>
<li>Update to support I2S feature on SPI6 instance available on STM32H723xx, STM32H725xx, STM32H730xx, STM32H730xxQ, STM32H733xx and STM32H735xx devices.</li>
</ul></li>
<li><strong>HAL</strong> updates
<ul>
<li>HAL code quality enhancement for MISRA-C Rule-8.13 by adding const qualifiers.</li>
<li><strong>HAL Generic</strong>
<ul>
<li>Allow redefinition of macro UNUSED(x).</li>
<li>Update of HAL_GetTickFreq() API brief.</li>
<li>Update stm32h7xx_hal_conf_template.h file to support legacy HAL ETH driver.</li>
</ul></li>
<li><strong>HAL PWR</strong>
<ul>
<li>Add macro UNUSED() to avoid the generation of a warning related to the unused argument ‘Regulator’.</li>
<li>Update HAL_PWREx_PVD_AVD_IRQHandle() API to call right callbacks before performing the clear.</li>
</ul></li>
<li><strong>HAL GPIO</strong>
<ul>
<li>Add alternative function mappings for CSLEEP, CSTOP and NDSTOP2.</li>
</ul></li>
<li><strong>HAL EXTI</strong>
<ul>
<li>Add macro UNUSED() to avoid the generation of a warning related to the unused argument ‘Edge’.</li>
</ul></li>
<li><strong>HAL CORTEX</strong>
<ul>
<li>Updated HAL_MPU_ConfigRegion() API to allow the configuration of the MPU registers independently of the value of Enable/Disable field.</li>
<li>Add new APIs HAL_MPU_EnableRegion() / HAL_MPU_DisableRegion().</li>
</ul></li>
<li><strong>HAL RTC_BKP</strong>
<ul>
<li>Change RTC_ISR_INITF to RTC_ISR_INIT in the Exit Initialization mode.</li>
<li>Remove macro __HAL_RTC_TAMPER_GET_IT() as it is redundant with macro __HAL_RTC_TAMPER_GET_FLAG() and create an alias into the hal_legacy.h file.</li>
<li>Correct misleading note about shadow registers.</li>
</ul></li>
<li><strong>HAL PSSI</strong>
<ul>
<li>Replace hdmatx by hdmarx in HAL_PSSI_Receive_DMA() API.</li>
<li>Use MODIFY_REG in HAL_PSSI_Transmit() and HAL_PSSI_Receive() APIs.</li>
</ul></li>
<li><strong>HAL/LL TIM</strong>
<ul>
<li>Remove multiple volatile reads in interrupt handler for better performance.</li>
<li>Assert check for the right channels.</li>
<li>Remove unnecessary change of MOE bitfield in LL_TIM_BDTR_Init() API.</li>
<li>Remove useless check on macro IS_TIM_ADVANCED_INSTANCE() within LL_TIM_BDTR_Init() API to fix Break Filter configuration problem with specific TIM instances.</li>
<li>Update interrupt flag is cleared when the update event is generated by software.</li>
<li>Fix typo in PWM symmetric mode related constants names.</li>
<li>Improve period configuration parameter check.</li>
<li>Improve HAL TIM driver’s operational behavior.</li>
</ul></li>
<li><strong>HAL LPTIM</strong>
<ul>
<li>Remove redundant macro IS_LPTIM_AUTORELOAD().</li>
</ul></li>
<li><strong>LL COMP</strong>
<ul>
<li>Add new APIs:
<ul>
<li>LL_COMP_IsActiveFlag_OutputTrig().</li>
<li>LL_COMP_ClearFlag_OutputTrig().</li>
<li>LL_COMP_EnableIT_OutputTrig().</li>
<li>LL_COMP_DisableIT_OutputTrig().</li>
<li>LL_COMP_IsEnabledIT_OutputTrig().</li>
</ul></li>
</ul></li>
<li><strong>HAL DSI</strong>
<ul>
<li>Align DSI Initialization sequence to the recommended ‘Programing procedure overview’ part to avoid DSI read LCD controller register 0x0A error.</li>
</ul></li>
<li><strong>HAL FLASH</strong>
<ul>
<li>Add macro UNUSED() to avoid the generation of a warning related to the unused argument ‘Edge’.</li>
<li>Add functions to handle FLASH ECC single correction and double detection interruptions.</li>
<li>Add the HAL_FLASHEx_GetEccInfo() function to retrieve the ECC fail information.</li>
</ul></li>
<li><strong>HAL NOR</strong>
<ul>
<li>Add x8 commands support for NOR Flash driver.</li>
</ul></li>
<li><strong>HAL SPDIFRX</strong>
<ul>
<li>Prevent hard fault by checking DMA usage.</li>
<li>Tuning of default SPDIFRX timeout.</li>
</ul></li>
<li><strong>HAL HASH</strong>
<ul>
<li>Read the last remaining bytes (3 or 2 or 1) of the data in a temporary variable (taking into account swap mode) and enter this variable into the HASH->DIN when the data is not a multiple of 4 bytes.</li>
<li>Code quality enhancement : Fix MISRA-C Rules 12.1, 10.7, 10.6, 10.4.</li>
</ul></li>
<li><strong>HAL CRYP</strong>
<ul>
<li>Update CRYP HAL driver to fix the issue of writing out the outputbuffer when the size is not multiple of 4.</li>
</ul></li>
<li><strong>HAL OPAMP</strong>
<ul>
<li>Fix incorrect word ‘surcharged’ in functions headers.</li>
</ul></li>
<li><strong>HAL/LL ADC</strong>
<ul>
<li>Update LL_ADC_SetAnalogWDThresholds(), LL_ADC_GetAnalogWDThresholds(), LL_ADC_ConfigAnalogWDThresholds() APIs for ADC3 IP version.</li>
<li>Update HAL ADC driver to support case of dual mode with 2 DMA channels.</li>
<li>Update setting of channel preselection for ADC internal channel.</li>
<li>Update LL_ADC_DeInit() API with reference manual.</li>
</ul></li>
<li><strong>HAL DAC</strong>
<ul>
<li>Fix incorrect word ‘surcharged’ in functions headers.</li>
<li>Updated DAC buffer calibration according to RM.</li>
</ul></li>
<li><strong>HAL OSPI</strong>
<ul>
<li>Update OCTOSPI driver to handle proper abort of the DMA transfer.</li>
</ul></li>
<li><strong>HAL CORDIC</strong>
<ul>
<li>Fix incorrect word ‘surcharged’ in functions headers.</li>
</ul></li>
<li><strong>HAL FMAC</strong>
<ul>
<li>Avoid usage of magic numbers.</li>
<li>Fix incorrect word ‘surcharged’ in functions headers.</li>
</ul></li>
<li><strong>HAL/LL SPI</strong>
<ul>
<li>Code improvement related to LDRA inside HAL_SPI_TransmitReceive_DMA(), HAL_SPI_Abort() and HAL_SPI_Abort_IT() APIs.</li>
<li>Update the register field modified by LL_SPI_SetTxCRCInitPattern() API.</li>
<li>In Full Duplex mode, calling HAL_SPI_TransmitReceive_DMA() API can generate a RX HDMA busy if HDMA TX is not well initialized. To avoid this, now a DMA abort is done on RX path to reset HDMA RX to ready state.</li>
<li>Feature Reload IT can generate Hardfault at high baudrate. This happens because variable hspi->Reload.Requested is reset before hspi->RxXferCount goes to zero. To avoid this, now hspi->Reload.Requested reset is done inside local ISR pointer instead of HAL_SPI_IRQHandler() API.</li>
</ul></li>
<li><strong>HAL QSPI</strong>
<ul>
<li>Clear the QSPI.AR register when sCommand.AddressMode is QSPI_ADDRESS_NONE</li>
</ul></li>
<li><strong>HAL SMBUS</strong>
<ul>
<li>Update HAL SMBUS driver to prefetch data before starting the transmission: implementation of errata sheet workaround I2C2-190208 : Transmission stalled after first byte.</li>
<li>Update SMBUS_ITErrorHandler to flash TXDR just in case of error.</li>
</ul></li>
<li><strong>HAL ETH</strong>
<ul>
<li>Update the entry to critical section without enabling unwanted global interrupts.</li>
<li>Add missing system time in different PTP APIs.</li>
<li>Fix ETH_Start_IT sequence.</li>
<li>HAL ETH Driver general updates to enhance the quality and robustness.</li>
<li>Add condition to get the TimeStamp only when it was captured (Check on Last Descriptor and TimeStamp flag set).</li>
<li>Fix comment “CSR Clock Range between 150-250* MHz”.</li>
<li>Update on Rx descriptor Tail pointer management to avoid race condition.</li>
<li>Move the section of disable MMC interrupts from HAL_ETH_Start_IT() API to HAL_ETH_Init() API.</li>
<li>Fix MAC register name to get MAC LPI interrupt.</li>
</ul></li>
<li><strong>HAL UART</strong>
<ul>
<li>Update initialisation sequence for TXINV, RXINV and TXRXSWAP settings.</li>
<li>Fix incorrect gState check in HAL_UART_RegisterRxEventCallback/HAL_UART_UnRegisterRxEventCallback APIs to allow user Rx Event Callback registration when a transmit is ongoing.</li>
<li>Prevent RTOF flag from being cleared by a transmit process in polling mode.</li>
</ul></li>
<li><strong>HAL FDCAN</strong>
<ul>
<li>Fix GetIndex issue in HAL_FDCAN_GetRxMessage() API.</li>
</ul></li>
<li><strong>HAL SAI</strong>
<ul>
<li>Improve audio quality (avoid potential glitch).</li>
<li>Fix incorrect word ‘surcharged’.</li>
</ul></li>
<li><strong>HAL I2C</strong>
<ul>
<li>Update I2C_WaitOnRXNEFlagUntilTimeout() function to check I2C_FLAG_AF independently from I2C_FLAG_RXNE.</li>
<li>Update HAL_I2C_IsDeviceReady() API to support 10_bit addressing mode: Update done on the macro I2C_GENERATE_START.</li>
<li>Update HAL I2C driver to prefetch data before starting the transmission: implementation of errata sheet workaround I2C2-190208 : Transmission stalled after first byte</li>
<li>Update HAL_I2C_Init API to clear ADD10 bit in 7 bit addressing mode.</li>
<li>Update HAL I2C driver to disable all interrupts after end of transaction.</li>
<li>Update HAL_I2C_Mem_Write_IT() API to initialize XferSize at 0.</li>
<li>Update I2C_Slave_ISR_IT(), I2C_Slave_ISR_DMA() and I2C_ITSlaveCplt() functions to prevent the call of HAL_I2C_ListenCpltCallback() API twice.</li>
<li>In HAL_I2C_IsDeviceReady() API remove the unusable code.</li>
<li>Update I2C_WaitOnFlagUntilTimeout() function to handle error case.</li>
<li>Update HAL_I2C_Slave_Transmit() API to check if the received NACK is the good one.</li>
<li>Update LL_I2C_HandleTranfer() API to prevent undefined behavior of volatile usage before updating the CR2 register.</li>
</ul></li>
<li><strong>HAL USB</strong>
<ul>
<li>ll_USB.c fix wrong mask to clear USB interrupt in USB_ClearInterrupts() function.</li>
<li>ll_usb.c: remove useless software setting to setup the frame interval at 80%.</li>
<li>ll_usb.c hal_hcd.c: adding support of hub split transactions.</li>
<li>pcd.c/ll_usb.c: fix device connection in case battery charging used with HS instance linked to internal FS PHY.</li>
<li>ll_usb.c: increase timeout value to allow core reset to complete.</li>
<li>ll_usb.c: improve delay management to set core mode.</li>
</ul></li>
<li><strong>LL UTILS</strong>
<ul>
<li>Fix a note about Ticks parameter.</li>
</ul></li>
</ul></li>
<li><strong>BSP</strong> updates
<ul>
<li><strong>BSP Boards</strong>
<ul>
<li>Align the defined symbol “SDRAM_DEVICE_SIZE” with value defined in memory datasheet.</li>
<li>Increase timeout compliantly to the SD Cards specification for STM32H7B3I-DK and STM32H735G-DK.</li>
<li>Invert argument order between definitions and declarations of I2C4_WriteReg() and I2C4_ReadReg().</li>
<li><strong>STM32H743I-EVAL</strong>
<ul>
<li>Update BSP_SD_DetectITConfig() API to set the edge detection for the SD card switch.</li>
</ul></li>
<li><strong>STM32H747I-DISCO</strong>
<ul>
<li>Update LCD BSP to support Dynamic ID.</li>
<li>Remove misleading comments.</li>
</ul></li>
</ul></li>
<li><strong>BSP Components</strong>
<ul>
<li><strong>BSP component lan8742</strong>
<ul>
<li>Remove unnecessary delay.</li>
</ul></li>
<li><strong>BSP component nt35510</strong>
<ul>
<li>Fix setting of DPRSLCTR register.</li>
</ul></li>
<li><strong>BSP component otm8009a</strong>
<ul>
<li>All source files: update disclaimer to add reference to the new license agreement.</li>
<li>Update Read_ID() API to support dynamic read ID.</li>
</ul></li>
</ul></li>
</ul></li>
<li><strong>Middleware</strong> updates:
<ul>
<li>Upgrade of <strong>USB Device</strong> library to new version <strong>V2.11.3</strong></li>
<li>Upgrade of <strong>USB host</strong> library to new version <strong>V3.5.2</strong></li>
<li>Upgrade of <strong>MbedTLS</strong> library to new version <strong>V2.16.2_20231024</strong></li>
<li>Upgrade of <strong>FatFS</strong> library to new version <strong>Vr0.12c_20231123</strong></li>
</ul></li>
<li><strong>Project</strong> updates
<ul>
<li>General fixes to support GCC11 and GCC12 in all STM32CubeIDE projects.</li>
<li>Update STM32CubeIDE projects to fix the location of .size directive in startup code to allow proper size information of vector table.</li>
<li>Adding ICACHE Disable before any flash Prog/Erase.</li>
<li><strong>DMA Examples</strong>
<ul>
<li>Memory alignment of aDST_Buffer destination buffer.</li>
</ul></li>
<li><strong>CRC Examples</strong>
<ul>
<li>Update to fix STM32CubeIDE warning: Accessing 4 bytes in a region of size x [-Wstringop-overflow=].</li>
</ul></li>
<li><strong>DCMI Examples</strong>
<ul>
<li>Update ‘DCMI Capture Mode’ example of STM32H747I-DISCO to support the NT35510 LCD driver.</li>
</ul></li>
<li><strong>SDMMC Examples</strong>
<ul>
<li>Modification of the address in the transmission and the reception to avoid lose of data.</li>
</ul></li>
<li><strong>CORTEX Examples</strong>
<ul>
<li>Update the expected behavior in readme.txt file.</li>
</ul></li>
<li><strong>LwIP Applications</strong>
<ul>
<li>Fix ‘RAM_D2’ size in *.ld files of LwIP applications for NUCLEO-H723ZG and STM32H735G-DK boards.</li>
<li>Fix Wrong use of DHCP API in application code & ethernet_link_thread</li>
<li>Handle the case of error code returned by LAN8742_init() when called from low_level_init() in ‘mbedTLS’ and ‘LwIP’ applications.</li>
<li>Fix DeadLock in the transmit output</li>
<li>Fix Confusing comment in ethernet_if</li>
<li>Fix Ethernet LwIP and FreeRTOS issue when using CMSIS v2</li>
</ul></li>
<li><strong>MbedTLS Applications</strong>
<ul>
<li>Change the size and the argument from static to dynamic table.</li>
<li>Align SSL calc/verif functions prototypes with their implementations.</li>
</ul></li>
<li><strong>STemWin Applications</strong>
<ul>
<li>Update to fix STM32CubeIDE error: ‘LITTLE_ENDIAN’ and ‘BIG_ENDIAN’ undeclared.</li>
</ul></li>
<li><strong>USB Applications</strong>
<ul>
<li>Appli USB HID: adding support of STOP mode entry during USB suspend.</li>
<li>Improve USB transmit data throughput.</li>
<li>USB Device Fix first byte missing transmission issue.</li>
<li>USB_Host: MSC applications: fix Stack corruption due to inconsistent type of local variable in MSC_File_Operations().</li>
<li>Add the missing closing brace of #ifdef __cplusplus in the usbh_conf.h of the USB_Host/HID_Standalone example.</li>
</ul></li>
</ul></li>
</ul>
<h2 id="contents">Contents</h2>
<h3 id="projects">Projects :</h3>
<ul>
<li>The STM32CubeH7 Firmware package comes with a rich set of examples running on STMicroelectronics boards, organized by board and provided with pre-configured projects for the main supported toolchains. The exhaustive list of projects is provided in this table <a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>.</li>
</ul>
<table>
<caption><strong>Projects</strong></caption>
<thead>
<tr class="header">
<th>Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release notes</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Projects</td>
<td style="text-align: left;"><strong>v1.11.2</strong></td>
<td style="text-align: left;"><a href="Projects/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h3 id="components">Components :</h3>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: center;">Version</th>
<th style="text-align: center;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CMSIS</td>
<td style="text-align: center;">v5.6.0</td>
<td style="text-align: center;"><a href="Drivers/CMSIS/docs/General/html/index.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>STM32H7xx CMSIS</strong></td>
<td style="text-align: center;"><strong>v1.10.4</strong></td>
<td style="text-align: center;"><a href="Drivers/CMSIS/Device/ST/STM32H7xx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>STM32H7xx HAL</strong></td>
<td style="text-align: center;"><strong>v1.11.3</strong></td>
<td style="text-align: center;"><a href="Drivers/STM32H7xx_HAL_Driver/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP STM32H7xx_Nucleo</strong></td>
<td style="text-align: center;"><strong>v1.3.2</strong></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H7xx_Nucleo/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP STM32H735G-DK</strong></td>
<td style="text-align: center;"><strong>v1.2.2</strong></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H735G-DK/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP STM32H7B3I-EVAL</strong></td>
<td style="text-align: center;"><strong>v2.3.2</strong></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H7B3I-EVAL/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP STM32H7B3I-DK</strong></td>
<td style="text-align: center;"><strong>v2.3.2</strong></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H7B3I-DK/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP STM32H743I-EVAL</strong></td>
<td style="text-align: center;"><strong>v3.3.2</strong></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H743I-EVAL/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP STM32H745I-DISCO</strong></td>
<td style="text-align: center;"><strong>v3.3.2</strong></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H745I-DISCO/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP STM32H747I-EVAL</strong></td>
<td style="text-align: center;"><strong>v3.3.2</strong></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H747I-EVAL/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP STM32H747I-DISCO</strong></td>
<td style="text-align: center;"><strong>v3.6.2</strong></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H747I-DISCO/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP STM32H750B-DK</strong></td>
<td style="text-align: center;"><strong>v3.3.3</strong></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H750B-DK/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Adafruit_Shield</td>
<td style="text-align: center;">v5.0.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/Adafruit_Shield/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Common</td>
<td style="text-align: center;">v7.0.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/common/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP adv7533</td>
<td style="text-align: center;">v2.0.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/adv7533/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP ampire480272</td>
<td style="text-align: center;">v1.0.3</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/ampire480272/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP ampire640480</td>
<td style="text-align: center;">v1.0.3</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/ampire640480/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP cs42l51</td>
<td style="text-align: center;">v2.0.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/cs42l51/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP exc7200</td>
<td style="text-align: center;">v2.0.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/exc7200/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP ft5336</td>
<td style="text-align: center;">v2.0.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/ft5336/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP ft6x06</td>
<td style="text-align: center;">v2.0.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/ft6x06/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP lan8742</strong></td>
<td style="text-align: center;"><strong>v1.0.4</strong></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/lan8742/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP mfxstm32l152</td>
<td style="text-align: center;">v3.0.2</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/mfxstm32l152/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP m24lr64</td>
<td style="text-align: center;">v1.0.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/m24lr64/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP mt25tl01g</td>
<td style="text-align: center;">v2.3.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/mt25tl01g/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP mx25lm51245g</td>
<td style="text-align: center;">v2.0.2</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/mx25lm51245g/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP mt48lc4m32b2</td>
<td style="text-align: center;">v1.0.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/mt48lc4m32b2/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP is42s32800j</td>
<td style="text-align: center;">v1.0.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/is42s32800j/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP is42s32800g</td>
<td style="text-align: center;">v1.0.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/is42s32800g/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP is42s16800j</td>
<td style="text-align: center;">v1.0.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/is42s16800j/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP otm8009a</strong></td>
<td style="text-align: center;"><strong>v2.0.2</strong></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/otm8009a/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP ov9655</td>
<td style="text-align: center;">v2.2.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/ov9655/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP ov5640</td>
<td style="text-align: center;">v3.2.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/ov5640/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP rk043fn48h</td>
<td style="text-align: center;">v1.0.3</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/rk043fn48h/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP rk070er9427</td>
<td style="text-align: center;">v1.0.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/rk070er9427/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP s5k5cag</td>
<td style="text-align: center;">v2.0.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/s5k5cag/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP s70kl1281</td>
<td style="text-align: center;">v1.0.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/s70kl1281/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP st7735</td>
<td style="text-align: center;">v2.0.2</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/st7735/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP stmpe811</td>
<td style="text-align: center;">v3.0.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/stmpe811/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP ts3510</td>
<td style="text-align: center;">v2.0.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/ts3510/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP wm8994</td>
<td style="text-align: center;">v3.0.2</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/wm8994/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP es_wifi</td>
<td style="text-align: center;">v1.6.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/es_wifi/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP mx_wifi</td>
<td style="text-align: center;">v1.0.4</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/mx_wifi/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP nt35510</strong></td>
<td style="text-align: center;"><strong>v2.0.2</strong></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/nt35510/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middlewares</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: center;">Version</th>
<th style="text-align: center;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><strong>STM32 USB Device Library</strong></td>
<td style="text-align: center;"><strong>v2.11.3</strong></td>
<td style="text-align: center;"><a href="Middlewares/ST/STM32_USB_Device_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>STM32 USB Host Library</strong></td>
<td style="text-align: center;"><strong>v3.5.2</strong></td>
<td style="text-align: center;"><a href="Middlewares/ST/STM32_USB_Host_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STemWin</td>
<td style="text-align: center;">v5.44</td>
<td style="text-align: center;"><a href="Middlewares/ST/STemWin/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">TouchGFX</td>
<td style="text-align: center;">v4.12.3_20200316</td>
<td style="text-align: center;"><a href="Middlewares/ST/TouchGFX/changelog.txt">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32 PDM audio software decoding Library</td>
<td style="text-align: center;">v3.3.0</td>
<td style="text-align: center;"><a href="Middlewares/ST/STM32_Audio/Addons/PDM/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">FreeRTOS MPU</td>
<td style="text-align: center;">v10.3.1</td>
<td style="text-align: center;"><a href="Middlewares/Third_Party/FreeRTOS/Source/readme.txt">release notes</a> ST modified 20200831 <a href="Middlewares/Third_Party/FreeRTOS/Source/st_readme.txt">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">LibJPEG</td>
<td style="text-align: center;">v8d</td>
<td style="text-align: center;"><a href="Middlewares/Third_Party/LibJPEG/change.log">release notes</a> ST modified 20190329 <a href="Middlewares/Third_Party/LibJPEG/st_readme.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">LwIP</td>
<td style="text-align: center;">v2.1.2</td>
<td style="text-align: center;"><a href="Middlewares/Third_Party/LwIP/CHANGELOG">release notes</a> ST modified 20190315 <a href="Middlewares/Third_Party/LwIP/st_readme.txt">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>FatFS</strong></td>
<td style="text-align: center;"><strong>R0.12c</strong></td>
<td style="text-align: center;"><a href="Middlewares/Third_Party/FatFs/doc/updates.txt">release notes</a> <strong>ST modified 20231123</strong> <a href="Middlewares/Third_Party/FatFs/src/st_readme.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>mbedTLS</strong></td>
<td style="text-align: center;"><strong>v2.16.2</strong></td>
<td style="text-align: center;"><a href="Middlewares/Third_Party/mbedTLS/ChangeLog">release notes</a> <strong>ST modified 20231024</strong> <a href="Middlewares/Third_Party/mbedTLS/st_readme.txt">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">OpenAmp</td>
<td style="text-align: center;">v2018.10</td>
<td style="text-align: center;"><a href="Middlewares/Third_Party/OpenAMP/open-amp/README.md">release notes</a> ST modified 20200110 <a href="Middlewares/Third_Party/OpenAMP/mw_if/st_readme.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32_Network_Library</td>
<td style="text-align: center;">v2.1.2</td>
<td style="text-align: center;"><a href="Middlewares/ST/STM32_Network_Library/Release_notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Utilities</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: center;">Version</th>
<th style="text-align: center;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Fonts</td>
<td style="text-align: center;">V2.0.2</td>
<td style="text-align: center;"><a href="Utilities/Fonts/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">CPU</td>
<td style="text-align: center;">V1.1.2</td>
<td style="text-align: center;"><a href="Utilities/CPU/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">JPEG</td>
<td style="text-align: center;">V2.0.0</td>
<td style="text-align: center;"><a href="Utilities/JPEG/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">ResourcesManager</td>
<td style="text-align: center;">V1.4.0</td>
<td style="text-align: center;"><a href="Utilities/ResourcesManager/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">lcd</td>
<td style="text-align: center;">V2.0.1</td>
<td style="text-align: center;"><a href="Utilities/Basic_GUI/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Lcd_Trace</td>
<td style="text-align: center;">V2.0.0</td>
<td style="text-align: center;"><a href="Utilities/Lcd_Trace/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Common</td>
<td style="text-align: center;">V1.4.1</td>
<td style="text-align: center;"><a href="Utilities/Common/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations">Known Limitations</h2>
<ul>
<li>The following STM32CubeIDE projects include only Release configuration :
<ul>
<li>STM32H743I-EVAL/Applications/USB_Host/CDC_Standalone</li>
</ul></li>
<li><p>Only template projects migrated to Arm Compiler 6 with MDK-ARM 5.29 or upper version (“AC5-like Warnings” mode)</p></li>
<li><strong>OpenAMP</strong>-based applications (available on STM32H745I-DISCO, STM32H747I-DISCO and STM32H747I-EVAL) come with known compilation warning
<ul>
<li>Related to the OpenAmp third party stack</li>
<li>Related to ST application implementation For warning details please refer to the corresponding applications readme.txt files</li>
</ul></li>
<li><strong>STM32H743I-EVAL</strong>
<ul>
<li>MenuLauncher project is provided for EWARM IDE and STM32CubeIDE only (not provided for MDK-ARM)</li>
</ul></li>
<li><strong>STM32H7B3I-DK</strong>
<ul>
<li>MDK-ARM project for <strong>TouchGFX Demonstrations</strong> comes with known MDK-ARM compilation warning related to TouchGFX Middleware</li>
</ul></li>
<li><p>No impact of the above warnings on the functional behavior</p></li>
</ul>
<h2 id="development-toolchains-and-compilers">Development Toolchains and Compilers</h2>
<ul>
<li><p>IAR Embedded Workbench for ARM (EWARM) toolchain V8.50.9 + ST-LINKV3.</p></li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.32 minimum (ARM Compiler 5 (“AC5-like Warnings” selected))
<ul>
<li>Note : MDK-ARM 5.38 comes by default with AC6 only. To use it with AC5, please follow the steps available in this AN:
<ul>
<li>https://developer.arm.com/documentation/ka005073/latest/</li>
</ul></li>
</ul></li>
<li><p>STM32CubeIDE toolchain v1.15.0</p></li>
</ul>
<h2 id="supported-devices-and-eval-boards">Supported Devices and EVAL boards</h2>
<ul>
<li>STM32H743/753/747/757/745/755/750/742/7A3/7B3/7B0/723/725/730/730xxQ/733/735 devices</li>
<li>NUCLEO-H723ZG rev.E</li>
<li>STM32H735G-DK rev.B</li>
<li>NUCLEO-H7A3ZI-Q rev.D</li>
<li>NUCLEO-H743ZI rev.B and NUCLEO-H743ZI2 rev.B/rev.D</li>
<li>NUCLEO-H745ZI-Q rev.B/rev.D</li>
<li>STM32H7B3I-DK rev.B</li>
<li>STM32H7B3I-EVAL rev.D</li>
<li>STM32H743I-EVAL rev.B/rev.E</li>
<li>STM32H745I-DISCO rev.B</li>
<li>STM32H747I-EVAL rev.E</li>
<li>STM32H747I-DISCO rev.D</li>
<li>STM32H750B-DISCO rev.B</li>
</ul>
<h2 id="backward-compatibility">Backward compatibility</h2>
<ul>
<li>None</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section16" aria-hidden="true"> <label for="collapse-section16" aria-hidden="true"><strong>V1.11.1 / 14-July-2023</strong></label>
<div>
<h2 id="main-changes-1">Main Changes</h2>
<ul>
<li>Deploy support of new LCD component NT35510.
<ul>
<li>One of the following flags must be enabled in stm32h747i_discovery_conf.h file options in order to select the target daughter board revision connected on STM32H747I DISCOVERY :
<ul>
<li>USE_LCD_CTRL_OTM8009A : Applicable for all LCD daughter boards (MB1166) except for Rev -A09.</li>
<li>USE_LCD_CTRL_NT35510 : Applicable only for LCD daughter boards (MB1166) Rev -A09.</li>
</ul></li>
</ul></li>
<li><strong>Projects</strong> updates
<ul>
<li>STM32H747I-DISCO :
<ul>
<li>All LCD DSI video mode projects : add support of new BSP component NT35510.</li>
</ul></li>
</ul></li>
<li><strong>BSP</strong> updates
<ul>
<li>STM32H747I-DISCO BSP Drivers:
<ul>
<li>Update STM32H747I-DISC BSP drivers to support LCD based on nt35510 component.</li>
</ul></li>
<li>nt35510 BSP component Drivers:
<ul>
<li>Official release of component drivers for NT35510 in line with STM32Cube BSP drivers development guidelines (UM2298).</li>
</ul></li>
</ul></li>
</ul>
<h2 id="contents-1">Contents</h2>
<h3 id="projects-1">Projects :</h3>
<ul>
<li>The STM32CubeH7 Firmware package comes with a rich set of examples running on STMicroelectronics boards, organized by board and provided with pre-configured projects for the main supported toolchains. The exhaustive list of projects is provided in this table <a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>.</li>
</ul>
<table>
<caption><strong>Projects</strong></caption>
<thead>
<tr class="header">
<th>Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release notes</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Projects</td>
<td style="text-align: left;"><strong>v1.11.1</strong></td>
<td style="text-align: left;"><a href="Projects/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h3 id="components-1">Components :</h3>
<table>
<caption><strong>Drivers</strong></caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: center;">Version</th>
<th style="text-align: center;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><strong>BSP STM32H747I-DISCO</strong></td>
<td style="text-align: center;"><strong>v3.6.0</strong></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H747I-DISCO/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP nt35510</strong></td>
<td style="text-align: center;"><strong>v2.0.0</strong></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/nt35510/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section15" aria-hidden="true"> <label for="collapse-section15" aria-hidden="true"><strong>V1.11.0 / 04-November-2022</strong></label>
<div>
<h2 id="main-changes-2">Main Changes</h2>
<h1 id="maintenance-release">Maintenance release</h1>
<ul>
<li>General updates to fix known defects and implementation enhancements.</li>
<li>Deploy the support of STM32CubeIDE toolchain on all projects
<ul>
<li>SW4STM32 toolchain support is discontinued</li>
</ul></li>
<li><strong>\HAL</strong> Please Refer to the <a href="Drivers/STM32H7xx_HAL_Driver/Release_Notes.html">release notes</a> for details
<ul>
<li>General updates to fix known defects and implementation enhancements on HAL</li>
</ul></li>
<li><strong>\Middleware</strong>:
<ul>
<li>Update of <strong>USB Device</strong> library to new version <strong>V2.11.1</strong></li>
<li>Update of <strong>USB host</strong> library to new version <strong>V3.5.0</strong></li>
</ul></li>
<li><strong>\CMSIS</strong> Please Refer to the <a href="Drivers/CMSIS/Device/ST/STM32H7xx/Release_Notes.html">release notes</a> for details.
<ul>
<li>General updates to fix known defects and implementation enhancements on CMSIS Device</li>
</ul></li>
<li><strong>\Projects</strong> Please Refer to the <a href="Projects/Release_Notes.html">release notes</a> for details.
<ul>
<li>General updates to fix known defects and implementation enhancements on Projects</li>
<li>Deploy the support of STM32CubeIDE toolchain on all projects
<ul>
<li>SW4STM32 toolchain support is discontinued</li>
</ul></li>
</ul></li>
</ul>
<h2 id="contents-2">Contents</h2>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: center;">Version</th>
<th style="text-align: center;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CMSIS</td>
<td style="text-align: center;">v5.6.0</td>
<td style="text-align: center;"><a href="Drivers/CMSIS/docs/General/html/index.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>STM32H7xx CMSIS</strong></td>
<td style="text-align: center;"><strong>v1.10.3</strong></td>
<td style="text-align: center;"><a href="Drivers/CMSIS/Device/ST/STM32H7xx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>STM32H7xx HAL</strong></td>
<td style="text-align: center;"><strong>v1.11.1</strong></td>
<td style="text-align: center;"><a href="Drivers/STM32H7xx_HAL_Driver/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32H7xx_Nucleo</td>
<td style="text-align: center;">v1.3.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H7xx_Nucleo/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32H735G-DK</td>
<td style="text-align: center;">v1.2.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H735G-DK/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32H7B3I-EVAL</td>
<td style="text-align: center;">v2.3.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H7B3I-EVAL/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32H7B3I-DK</td>
<td style="text-align: center;">v2.3.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H7B3I-DK/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32H743I-EVAL</td>
<td style="text-align: center;">v3.3.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H743I-EVAL/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32H745I-DISCO</td>
<td style="text-align: center;">v3.3.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H745I-DISCO/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32H747I-EVAL</td>
<td style="text-align: center;">v3.3.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H747I-EVAL/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32H747I-DISCO</td>
<td style="text-align: center;">v3.5.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H747I-DISCO/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32H750B-DK</td>
<td style="text-align: center;"><strong>v3.3.2</strong></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32H750B-DK/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Adafruit_Shield</td>
<td style="text-align: center;">v5.0.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/Adafruit_Shield/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Common</td>
<td style="text-align: center;">v7.0.0</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/common/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP adv7533</td>
<td style="text-align: center;">v2.0.1</td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/adv7533/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">