-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathRelease_Notes.html
More file actions
5367 lines (5367 loc) · 196 KB
/
Copy pathRelease_Notes.html
File metadata and controls
5367 lines (5367 loc) · 196 KB
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 STM32CubeH5 Firmware Package</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="_htmresc/mini-st_2020.css" />
<link rel="icon" type="image/x-icon" href="_htmresc/favicon.png" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<div class="row">
<div class="col-sm-12 col-lg-4">
<center>
<h1 id="release-notes-for-stm32cubeh5-firmware-package">Release Notes
for <mark> STM32CubeH5 Firmware Package </mark></h1>
<p>Copyright © 2026 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 STM32CubeH5 for STM32H5 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>
<li><p>A full set of software projects (basic examples, applications,
and demonstrations) for each board provided for this STM32
series.</p></li>
</ul></li>
</ul>
<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>
<p>Both the HAL and LL APIs are production–ready, checked with Coverity®
static analysis tool, and developed in compliance with MISRA C®
guidelines, following a process certified according to IEC 61508
systematic capability 2 level (SC2). Reports are available on
demand.</p>
<figure>
<img src="_htmresc/STM32Cube.bmp" alt="STM32Cube" />
<figcaption aria-hidden="true">STM32Cube</figcaption>
</figure>
<p>The <strong>drivers</strong> provided within this package
<strong>support</strong> the <strong>STM32H543xx/ STM32H553xx/
STM32H5E4xx/ STM32H5E5xx/ STM32H5F4xx/ STM32H5F5xx/ STM32H573xx /
STM32H563xx / STM32H562xx / STM32H503xx / STM32H533xx / STM32H523xx
lines.</strong></p>
<ul>
<li>For quick getting started with the STM32CubeH5 firmware package,
refer to <a
href="https://www.st.com/resource/en/user_manual/dm00906547.pdf">UM3065</a>
you can download firmware updates and all the latest documentation from
<a
href="https://www.st.com/en/embedded-software/stm32cubeh5.html">www.st.com/stm32cubeH5</a></li>
<li>Below links to the most useful documents:
<ul>
<li><a
href="https://www.st.com/resource/en/user_manual/dm00906547.pdf">UM3065:
Getting started with STM32CubeH5 for STM32H5 Series</a></li>
<li><a
href="https://www.st.com/resource/en/user_manual/dm00948527.pdf">UM3132:
Description of STM32H5 HAL and low-layer driver</a></li>
<li><a
href="https://www.st.com/resource/en/user_manual/dm00440740.pdf">UM2298:
STM32Cube BSP drivers development guidelines</a></li>
<li><a
href="https://wiki.st.com/stm32mcu/wiki/Security:Getting_started_with_STM32H5_security">Getting
started with STM32H5 security</a></li>
<li><a
href="https://wiki.st.com/stm32mcu/wiki/Category:Security_with_STM32H5">Security
with STM32H5</a></li>
</ul></li>
</ul>
</div>
<section id="update-history" class="col-sm-12 col-lg-8">
<h2><strong>Update History</strong></h2>
<div class="collapse">
<input type="checkbox" id="collapse-section11" checked aria-hidden="true">
<label for="collapse-section11" checked aria-hidden="true"><strong>V1.7.0
/ 03-June-2026</strong></label>
<div>
<h2 id="main-changes">Main Changes</h2>
<ul>
<li><strong>Official Release</strong> of <strong>STM32CubeH5</strong>
Firmware Package, to support <strong>STM32H543xx</strong> and
<strong>STM32H553xx</strong> devices (STM32Cube for STM32H5 Series)</li>
<li>Maintenance update for the STM32CubeH5 Firmware Package supporting
STM32H5E4xx, STM32H5E5xx, STM32H5F4xx, STM32H5F5xx, STM32H503xx,
STM32H523xx, STM32H533xx, STM32H562xx, STM32H563xx and STM32H573xx
devices.</li>
<li>Examples/applications/templates and demo added for
<strong>NUCLEO-H553ZG</strong> board.</li>
<li>BSP support for NUCLEO-H553ZG board.</li>
<li>TrustZone-disabled reference project template added for
<strong>ARM-STUDIO</strong> on NUCLEO-H553ZG.</li>
<li>New TrustZone-enabled no-isolation template added on NUCLEO-H553ZG
boards.</li>
<li>New OEMiROT boot & Application with TZ enabled, for
NUCLEO-H553ZG.</li>
<li>SA0076 fixed</li>
<li>DMA2D downscaling API improved to support fractional ratio
representation while preserving backward compatibility along with DMA2D
downscale example on STM32H5F5J-DK.</li>
</ul>
<h2 id="contents">Contents</h2>
<h3 id="sbom"><strong>SBOM</strong></h3>
<ul>
<li>Deliver SBOM in <a href="sbom_cdx.json">CycloneDX v1.5
format</a></li>
</ul>
<h3 id="cmsis-drivers-updates"><strong>CMSIS Drivers</strong>
updates</h3>
<ul>
<li>Official release of <strong>STM32H543xx</strong> and
<strong>STM32H553xx</strong> devices.</li>
<li>CMSIS Device Release version of bits and registers definition
aligned with RM0539 (STM32H543xx / STM32H553xx reference manual) RM0481
(STM32H523xx, STM32H533xx, STM32H562xx, STM32H563xx and STM32H573xx
reference manual), RM0492 (STM32H503xx reference manual) and RM0517
(STM32H5E4xx, STM32H5E5xx, STM32H5F4xx and STM32H5F5xx reference
manual)</li>
</ul>
<h3 id="halll-drivers-updates"><strong>HAL/LL Drivers</strong>
updates</h3>
<ul>
<li><p><strong>Official Release</strong> V1.7.0 of <span
style="font-weight: bold;">STM32CubeH5</span> Firmware Package, to
support <strong>STM32H543xx</strong> and <strong>STM32H553xx</strong>
devices.</p></li>
<li><p>Support added for H5 1M devices in all HAL/LL drivers.</p></li>
<li><p>General updates to fix known defects and implementation
enhancements.</p></li>
<li><p><strong>HAL Drivers</strong> updates:</p>
<ul>
<li><strong>HAL CCB</strong> driver
<ul>
<li>Updated support for recovery from seed error sequence after RNG
v4.4.</li>
<li>Fixed transient variable handling in sanity check support.</li>
<li>Added RNG handle support for resilient seed error recovery.</li>
<li>Updated support for wrap keys from secure domain to non-secure
domain.</li>
<li>Fixed MISRA Rule 12.2 issues in HAL CCB.</li>
<li>Updated support to CCB v2.1.</li>
</ul></li>
<li><strong>HAL CRYP</strong> driver
<ul>
<li>Fixed MISRA-C Rule 7.1 in hal_cryp.c.</li>
<li>Fixed MISRA-C Rule 2.2_c warning in stm32h5xx_hal_cryp.c.</li>
<li>Fixed CCM partial output handling for non-32-bit aligned
payloads.</li>
<li>Fixed missing second CRYP handle usage in SAES shared-key mode.</li>
<li>Updated seed recovery handling after the RNG v4.4.</li>
<li>Fixed tickstart handling in SAES.</li>
<li>Updated implementation related to AES GCM decryption tag
handling.</li>
</ul></li>
<li><strong>HAL DMA2D</strong> driver
<ul>
<li>DMA2D3 downscaling implementation added to expose the full 4K-step
scaling range with equidistant increments.</li>
</ul></li>
<li><strong>HAL FLASH</strong> driver
<ul>
<li>Removed smart prefetch APIs from the FLASH driver.</li>
<li>Added dedicated HAL functions to independently lock and unlock
secure and non-secure FLASH control registers.</li>
</ul></li>
<li><strong>HAL FMC</strong> driver
<ul>
<li>Fixed MISRA warning Rule 11.3 on the NOR driver.</li>
<li>Removed 8-bit configuration support from the FMC NOR driver.</li>
<li>Fixed NAND status handling when HAL_NAND_Read_Status returns
NAND_ERROR.</li>
</ul></li>
<li><strong>HAL RNG</strong> driver
<ul>
<li>Updated comment for <code>NistCompliance</code> field in
<code>RNG_ConfigTypeDef</code>.</li>
<li>Updated seed recovery handling after the RNG v4.4.</li>
<li>Fixed the clear logic for the clock error flag during interrupt
handling.</li>
<li>Added error-state check at the start of seed recovery.</li>
<li>Added resilient <code>__HAL_UNLOCK</code>.</li>
<li>Added warning handling related to resilient seed recovery.</li>
<li>Fixed missing NSCR register.</li>
<li>Improved recovery from seed error handling related to RNG v4.4.</li>
<li>Fixed resilient recovery warning handling.</li>
</ul></li>
<li><strong>HAL SDMMC</strong> driver
<ul>
<li>Fixed MISRA-C warning Rule 10.3 in
<code>stm32h5xx_hal_sdio.c</code>.</li>
<li>Fixed MISRA-C Rule 8.13 violation.</li>
<li>Fixed SD card initialization at frequencies below 3 MHz.</li>
<li>Fixed MISRA-C Rule 12.2 violations.</li>
<li>Improved support for SD card V1.</li>
<li>Fixed command argument handling for block and byte modes.</li>
</ul></li>
<li><strong>HAL SMARTCARD</strong> driver
<ul>
<li>Fixed improper initialization of the smartcard clock.</li>
</ul></li>
<li><strong>HAL USB</strong> driver
<ul>
<li>Added support for get frame number.</li>
<li>Updated RX count register handling.</li>
<li>Avoided out-of-band reads.</li>
<li>Fixed MISRA-C Rule 8.13 issues.</li>
</ul></li>
</ul></li>
<li><p><strong>HAL Drivers</strong> updates:</p>
<ul>
<li><strong>LL RNG</strong> driver
<ul>
<li>Updated recovery from seed error handling after RNG v4.4.</li>
<li>Updated interrupt clear handling and resilient recovery logic.</li>
<li>Added support for resilient unlock behavior.</li>
<li>Fixed warnings related to resilient seed recovery.</li>
<li>Fixed missing NSCR register.</li>
<li>Updated NIST compliance parameter handling.</li>
</ul></li>
</ul></li>
</ul>
<h3 id="middlewares-updates"><strong>Middlewares</strong> updates:</h3>
<ul>
<li>Update <strong>STM32_USBPD Core Library</strong> version to
<strong>v4.3.3</strong></li>
<li>Update <strong>STM32_USBPD Device Library</strong> version to
<strong>h5_v1.3.2</strong></li>
<li>Update <strong>STM32_Audio</strong> version to
<strong>v3.7.1</strong></li>
<li>Update <strong>OpenBootloader</strong> version to
<strong>v6.1.3</strong></li>
<li>Update <strong>ThreadX</strong> version to
<strong>threadx-6.4.0.260327</strong></li>
<li>Update <strong>NetX Duo</strong> version to
<strong>netxduo-6.4.0.260415</strong></li>
<li>Update <strong>USBX</strong> version to
<strong>usbx-6.4.0.260508</strong></li>
<li>Update <strong>FileX</strong> version to
<strong>filex-6.4.0.260403</strong></li>
<li>Update <strong>LevelX</strong> version to
<strong>levelx-6.4.0.260403</strong></li>
<li>Update <strong>CMSIS-RTOS ThreadX wrapper</strong> version to
<strong>tx-cmsis-1.4.1.260410</strong></li>
<li>Update <strong>USBX STM32 Device Controllers</strong> version to
<strong>usbx-6.4.0.260508</strong></li>
<li>Update <strong>USBX STM32 Host Controllers</strong> version to
<strong>usbx-6.4.0.260508</strong></li>
<li>Update <strong>NetX Drivers</strong> version to
<strong>netxduo-6.4.0.260415</strong></li>
<li>Update <strong>FileX Drivers</strong> version to
<strong>filex-6.4.0.260403</strong></li>
<li>Update <strong>LevelX Drivers</strong> version to
<strong>levelx-6.4.0.260403</strong></li>
</ul>
<h3 id="utilities-updates"><strong>Utilities</strong> updates:</h3>
<ul>
<li>Update <strong>ROT_AppliConfig</strong> version to
<strong>v1.1.6</strong></li>
</ul>
<h3 id="projects"><strong>Projects</strong></h3>
<p>The <strong>STM32CubeH5</strong> Firmware package comes with template
running on STMicroelectronics boards, organized by board and provided
with preconfigured projects for the main supported toolchains. The
exhaustive list of projects is provided in this table <a
href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a></p>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release notes</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Projects</td>
<td style="text-align: left;">V1.7.0 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="Projects/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h3 id="components"><strong>Components</strong></h3>
<p><small>The components flagged by “<span
class="icon-st-update"></span>” have changed since the previous release.
“<span class="icon-st-add"></span>” are new.</small></p>
<table>
<caption><strong>Drivers</strong></caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CMSIS</td>
<td style="text-align: left;">v5.9.0</td>
<td style="text-align: left;"><a
href="Drivers/CMSIS/Documentation/index.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32H5xx CMSIS</td>
<td style="text-align: left;">V1.7.0 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/cmsis-device-h5/blob/master/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32H5xx HAL</td>
<td style="text-align: left;">V1.7.0 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32h5xx-hal-driver/blob/master/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32H5xx NUCLEO</td>
<td style="text-align: left;">V1.3.0 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32h5xx-nucleo-bsp/blob/main/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32H573I-DK</td>
<td style="text-align: left;">V1.2.0 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32h573i-discovery-bsp/blob/main/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32H5F5J-DK</td>
<td style="text-align: left;">V1.1.0 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32h5f5j-discovery-bsp/blob/main/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Common</td>
<td style="text-align: left;">V7.2.1</td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32-bsp-common/blob/v7.2.1/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP lan8742</td>
<td style="text-align: left;">V1.0.4</td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32-lan8742/blob/v1.0.4/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP cs42l51</td>
<td style="text-align: left;">V2.0.6</td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32-cs42l51/blob/v2.0.6/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP mx25lm51245g</td>
<td style="text-align: left;">V3.0.3</td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32-mx25lm51245g/blob/v3.0.3/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP ft6x06</td>
<td style="text-align: left;">V2.0.3</td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32-ft6x06/blob/v2.0.3/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP st7789h2</td>
<td style="text-align: left;">V2.0.4</td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32-st7789h2/blob/v2.0.4/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP tcpp0203</td>
<td style="text-align: left;">V1.2.3</td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32-tcpp0203/blob/v1.2.3/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP mx_wifi</td>
<td style="text-align: left;">V2.3.4</td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32-mx-wifi/blob/v2.3.4/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP aps6408</td>
<td style="text-align: left;">V2.0.1</td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32-aps6408/blob/v2.0.1/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP st1633i</td>
<td style="text-align: left;">v1.0.0</td>
<td style="text-align: left;"><a
href="Drivers/BSP/Components/st1633i/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP ism330dhcx</td>
<td style="text-align: left;">V1.8.0</td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32-ism330dhcx/blob/v1.8.0/Release_Notes.html">release
notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption><strong>Middlewares</strong></caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32 USBPD Core Library</td>
<td style="text-align: left;">v4.3.3 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="Middlewares/ST/STM32_USBPD_Library/Core/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32 USBPD Device Library</td>
<td style="text-align: left;">h5_v1.3.2 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="Middlewares/ST/STM32_USBPD_Library/Devices/STM32H5XX/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32_Audio</td>
<td style="text-align: left;">v3.7.1 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="Middlewares/ST/STM32_Audio/Addons/PDM/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">OpenBootloader</td>
<td style="text-align: left;">v6.1.3 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32-mw-openbl/blob/v6.1.3/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">ThreadX</td>
<td style="text-align: left;">threadx-6.4.0</td>
<td style="text-align: left;"><a
href="https://github.com/eclipse-threadx/threadx/releases/tag/v6.4.0_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 260327 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="https://github.com/STMicroelectronics/stm32-mw-threadx/blob/v6.4.0_260327/st_readme.txt">ST release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">NetXduo</td>
<td style="text-align: left;">netxduo-6.4.0</td>
<td style="text-align: left;"><a
href="https://github.com/eclipse-threadx/netxduo/releases/tag/v6.4.0_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 260415 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="https://github.com/STMicroelectronics/stm32-mw-netxduo/blob/v6.4.0_260415/st_readme.txt">ST release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">USBX</td>
<td style="text-align: left;">usbx-6.4.0</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/usbx/releases/tag/v6.4.0_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 260508 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="https://github.com/STMicroelectronics/stm32-mw-usbx/blob/v6.4.0_260508/st_readme.txt">ST release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FileX</td>
<td style="text-align: left;">filex-6.4.0</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/filex/releases/tag/v6.4.0_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 260403 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="https://github.com/STMicroelectronics/stm32-mw-filex/blob/v6.4.0_260403/st_readme.txt">ST release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">LevelX</td>
<td style="text-align: left;">levelx-6.4.0</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/levelx/releases/tag/v6.4.0_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 260403 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="https://github.com/STMicroelectronics/stm32-mw-levelx/blob/v6.4.0_260403/st_readme.txt">ST release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">mbed-crypto</td>
<td style="text-align: left;">v3.6.6</td>
<td style="text-align: left;"><a
href="Middlewares/Third_Party/mbed-crypto/README.md">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20260511 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="https://github.com/STMicroelectronics/stm32-mw-mbedtls/blob/v3.6.6_20260511/st_readme.txt">ST release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">mcuboot</td>
<td style="text-align: left;">v1.7.2.40 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="https://github.com/STMicroelectronics/stm32-mw-mcuboot/blob/v1.7.2.40/st_readme.txt">ST release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">mbed-crypto-alt</td>
<td style="text-align: left;">v1.2.1 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="Middlewares/ST/mbedtls_alt/Release_Notes.html">ST release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">mbedtls_key_wrap_engine</td>
<td style="text-align: left;">v1.0.4 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="Middlewares/ST/mbedtls_key_wrap_engine/Release_Notes.html">ST
release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption><strong>Utilities</strong></caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Common</td>
<td style="text-align: left;">V1.6.1</td>
<td style="text-align: left;"><a
href="Utilities/Common/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Fonts</td>
<td style="text-align: left;">V2.0.3</td>
<td style="text-align: left;"><a
href="Utilities/Fonts/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">CPU</td>
<td style="text-align: left;">V1.1.3</td>
<td style="text-align: left;"><a
href="Utilities/CPU/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">lcd</td>
<td style="text-align: left;">v2.2.0</td>
<td style="text-align: left;"><a
href="Utilities/lcd/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">GUI_INTERFACE</td>
<td style="text-align: left;">v2.3.0</td>
<td style="text-align: left;"><a
href="Utilities/GUI_INTERFACE/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">TRACER_EMB</td>
<td style="text-align: left;">V1.10.0</td>
<td style="text-align: left;"><a
href="Utilities/TRACER_EMB/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">ROT_AppliConfig</td>
<td style="text-align: left;">v1.1.6 <span
class="icon-st-update"></span></td>
<td style="text-align: left;"><a
href="Utilities/PC_Software/ROT_AppliConfig/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">HASH_HAL_Migrator</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a
href="Utilities/PC_Software/HASH_HAL_Migrator/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">JPEG</td>
<td style="text-align: left;">v2.0.3</td>
<td style="text-align: left;"><a
href="Utilities/JPEG/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="development-toolchains-and-compilers">Development Toolchains and
Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V9.20.4 + ST-LINK,
patch available here:
<ul>
<li><a
href="Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv9_STM32H5xx_V1.3.0.zip">Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv9_STM32H5xx_V1.3.0.zip</a><br />
</li>
<li>This patch supports
<strong>STM32H553</strong>/<strong>STM32H543</strong>/STM32H573/STM32H563/STM32H562/STM32H503/STM32H533/STM32H523/STM32H5F5/STM32H5F4/STM32H5E5/STM32H5E4
devices</li>
</ul></li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.38 +
ST-LINK, patch available here:
<ul>
<li><a
href="Utilities\PC_Software\IDEs_Patches\MDK-ARM\Keil.STM32H5xx_DFP.2.3.0.zip">Utilities\PC_Software\IDEs_Patches\MDK-ARM\Keil.STM32H5xx_DFP.2.3.0.zip</a></li>
<li>This patch supports
<strong>STM32H553</strong>/<strong>STM32H543</strong>/STM32H573/STM32H563/STM32H562/STM32H503/STM32H533/STM32H523/STM32H5F5/STM32H5F4/STM32H5E5/STM32H5E4
devices</li>
</ul></li>
<li>STM32CubeIDE V1.23.0 (GCC14)</li>
</ul>
<h2 id="supported-devices-and-boards">Supported Devices and boards</h2>
<ul>
<li>Devices:
<ul>
<li>STM32H573xx/STM32H563xx/STM32H562xx revX</li>
<li>STM32H503xx revX</li>
<li>STM32H533xx/STM32H523xx revA</li>
<li>STM32H5E4xx/STM32H5E5xx/STM32H5F4xx/STM32H5F5xx revX</li>
<li><strong>STM32H553xx</strong>/<strong>STM32H543xx</strong> revX</li>
</ul></li>
<li>Boards:
<ul>
<li>NUCLEO-H563ZI REV C</li>
<li>NUCLEO-H503RB REV C</li>
<li>STM32H573I-DK REV C</li>
<li>NUCLEO-H533RE REV C</li>
<li>NUCLEO-H5E5ZJ</li>
<li>STM32H5F5J-DK</li>
<li><strong>NUCLEO-H553ZG</strong></li>
</ul></li>
</ul>
<h2 id="dependencies">Dependencies</h2>
<ul>
<li>STM32CubeMX V6.18.0</li>
</ul>
<h2 id="known-limitations">Known Limitations</h2>
<ul>
<li>Some projects are not generated with STM32CubeMX tool for the
exhaustive list please refer to this table <a
href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a></li>
<li>The project Tx_FreeRTOS_Wrapper generates a warning “The left and
right operands in tx_freertos.c are identical”. This warning has no
impact on the project’s functionality</li>
</ul>
<h2 id="backward-compatibility">Backward Compatibility</h2>
<ul>
<li>Not applicable</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section10" aria-hidden="true">
<label for="collapse-section10" aria-hidden="true"><strong>V1.6.0 /
04-February-2026</strong></label>
<div>
<ul>
<li><strong>Official Release</strong> V1.6.0 of <span
style="font-weight: bold;">STM32CubeH5</span> Firmware Package, to
support <strong>STM32H5E4xx, STM32H5E5xx, STM32H5F4xx</strong> and
<strong>STM32H5F5xx</strong> devices.</li>
<li>Maintenance Release V1.6.0 of <span
style="font-weight: bold;">STM32CubeH5</span> Firmware Package, to
support <strong>STM32H503xx, STM32H523xx, STM32H533xx, STM32H562xx,
STM32H563xx</strong> and <strong>STM32H573xx</strong> devices.</li>
<li>Add support of STM32H5 4M device.</li>
<li>Deliver new <strong>PLAY HAL</strong> driver.</li>
</ul>
<h2 id="main-changes-1">Main Changes</h2>
<ul>
<li>Official release of <strong>STM32H5E4xx, STM32H5E5xx,
STM32H5F4xx</strong> and <strong>STM32H5F5xx</strong> devices.</li>
<li>New HAL IP drivers for <strong>DMA2D</strong>,
<strong>PLAY</strong>, <strong>JPEG</strong>, <strong>CCB</strong> and
<strong>LTDC</strong> with examples demonstrating their functionality.
Please refer HAL/LL driver section for more details.</li>
<li>Examples/applications/templates and demo added for
<strong>STM32H5F5J-DK</strong> and <strong>NUCLEO-H5E5ZJ</strong>
boards.</li>
<li>New <strong>JPEG</strong> utility component version
<strong>v2.0.3</strong> added to support JPEG examples.</li>
<li>ETH: HAL_ETH_SetMACFilterConfig API has changes in filterconfig -
customer application running on ETH may require modifications(it was
done v1.5.0).</li>
<li>Security updates
<ul>
<li>Secure boot:
<ul>
<li>New OEMiRoT application without TZ isolation (OEMiROT_Appli). This
user application is full secure, user does not have to manage TZ in the
application</li>
<li>RTC/Tamper management improvements in OEMiRoT</li>
<li>Fix USB usage in bootloader after OEMiROT jump</li>
<li><strong>Ymodem protocol update for Linux compatibility</strong></li>
</ul></li>
<li>New Cryptographic ecosystem based on MBED TLS</li>
<li>STM32 MbedTLS ALT middleware, mbedtls_alt, provides a set of
functions to replace Mbed TLS cryptography by alternative implementation
based on STM32 hardware cryptographic accelerators.</li>
<li>STM32 MbedTLS Key Wrap Engine, mbedtls_key_wrap_engine, provides a
set of APIs for performing protected cryptographic operations based on
STM32H5 hardware cryptographic accelerators, using symmetric and
asymmetric wrapped keys.</li>
<li>46 new projects to demonstrate AES (CBC, CCM, GCM), RSA and ECDH
operations, wrap key and generate wrapped key.</li>
</ul></li>
</ul>
<h2 id="contents-1">Contents</h2>
<h3 id="features"><strong>Features</strong></h3>
<p>STM32CubeH5 gathers in one single package all the generic embedded
software components required to develop an application on STM32H5
microcontrollers.</p>
<ul>
<li>Production–ready HAL and LL API drivers, checked with Coverity®
static analysis tool, and developed in compliance with MISRA C®
guidelines, following a process certified according to IEC 61508
systematic capability 2 level (SC2)</li>
<li>CMSIS CORE, DSP and RTOS software components</li>
<li>Consistent set of middleware components (Azure® RTOS USBX,
FileX/LevelX, ThreadX, NetX Duo, USB Power Delivery, mcu-boot,
mbed-crypto, and OpenBootloader).</li>
<li>Up to 526 examples and applications for easy understanding,
compatible with STM32CubeMX to facilitate the configuration through a
graphical tool</li>
</ul>
<p>STM32H5 devices support Arm® PSA security model. The STM32CubeH5
reference firmware supports all the different configurations of the
SMT32H5, it implements Secure Boot and Secure Firmware Update functions
managed into the two iRot (when ST-iRoT not active) and uRot memory
areas.</p>
<h3 id="sbom-1"><strong>SBOM</strong></h3>
<ul>
<li>Deliver SBOM in <a href="sbom_cdx.json">CycloneDX v1.5
format</a></li>
</ul>
<h3 id="cmsis-drivers-updates-1"><strong>CMSIS Drivers</strong>
updates</h3>
<ul>
<li>CMSIS Device Release version of bits and registers definition
aligned with <strong>RM0481</strong> (STM32H523xx, STM32H533xx,
STM32H562xx, STM32H563xx and STM32H573xx reference manual),
<strong>RM0492</strong> (STM32H503xx reference manual) and
<strong>RM0517</strong> (STM32H5E4xx, STM32H5E5xx, STM32H5F4xx and
STM32H5F5xx reference manual) (Please Refer to the <a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/cmsis-device-h5/blob/master/Release_Notes.html"><strong>release
notes</strong></a> for details)</li>
</ul>
<h3 id="halll-drivers-updates-1"><strong>HAL/LL Drivers</strong>
updates</h3>
<ul>
<li><p>HAL and LL drivers Release for STM32H5XX devices (Please Refer to
the <a
href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32h5xx-hal-driver/blob/master/Release_Notes.html"><strong>release
notes</strong></a> for details)</p></li>
<li><p>The HAL and LL drivers provided within this package are
<strong>MISRA-C:2012’ </strong> and <strong>Coverity
compliant</strong></p></li>
<li><p>Support of new HAL drivers - <strong>DMA2D</strong>,
<strong>JPEG</strong>,<strong>PLAY</strong>, <strong>CCB</strong> and
<strong>LTDC</strong></p></li>
<li><p><strong>HAL Drivers</strong> updates:</p>
<ul>
<li><strong>HAL ADC</strong> driver
<ul>
<li>Resolved issue where OPAMP internal channel was not connected on ADC
for H5 4M devices.</li>
<li>Fixed configuration mismatch between ChannelVddcore and
Channel0_GPIO registers.</li>
<li>Added support for ADF/MDF modules in the ADC driver for H5 4M
devices.</li>
<li>Added const qualifier to calibrated values stored in system flash to
ensure read-only access.</li>
<li>Updated ADC driver to fully support H5 4M devices.</li>
<li>Fixed ADC-HAL DMA multi-mode start function to correctly use the
length parameter as the number of transfers.</li>
</ul></li>
<li><strong>HAL CCB</strong> driver
<ul>
<li><strong>Added support for CCB HAL driver</strong>.</li>
<li>High level operation
<ul>
<li>Input structure requires buffers as uint8_t array.</li>
<li>Output structure requires buffers as uint8_t array.</li>
<li>Proteted ECDSA Sign
<ul>
<li>HAL_CCB_ECDSA_WrapPrivateKey() for protected ECDSA blob creation
when using user key.</li>
<li>HAL_CCB_ECDSA_GenerateWrapPrivateKey() for protected ECDSA blob
creation when using internal key.</li>
<li>HAL_CCB_ECDSA_Sign() for protected ECDSA Signing message usage.</li>
<li>HAL_CCB_ECDSA_ComputePublicKey() for protected ECDSA computing
public key usage.</li>
</ul></li>
<li>Proteted ECC Scalar Multiplication
<ul>
<li>HAL_CCB_ECC_WrapPrivateKey() for protected ECC blob creation when
using user key.</li>
<li>HAL_CCB_ECC_GenerateWrapPrivateKey() for protected ECC blob creation
when using internal key.</li>
<li>HAL_CCB_ECC_ComputeScalarMul() for protected ECC scalar
multiplication usage.</li>
</ul></li>
<li>Proteted RSA Modular Exponentiation
<ul>
<li>HAL_CCB_RSA_WrapPrivateKey() for protected RSA blob creation when
using user key.</li>
<li>HAL_CCB_RSA_ComputeModularExp() for protected RSA computing modular
exponetiation usage.</li>
</ul></li>
</ul></li>
</ul></li>
<li><strong>HAL CRYP</strong> driver
<ul>
<li>Updated code to correct typo in size of mask.</li>
<li>Prevented reading outside the boundaries of local array for all data
types.</li>
</ul></li>
<li><strong>HAL DAC</strong> driver
<ul>
<li>Fixed MISRA-C:2012 compliance warnings.</li>
<li>Added play trigger feature for H5 4M.</li>
</ul></li>
<li><strong>HAL DELAYBLOCK</strong> driver
<ul>
<li>Fixed inconsistency between code, comments, and reference
manual.</li>
</ul></li>
<li><strong>HAL DMA</strong> driver
<ul>
<li>Added check modes for HAL DMA APIs.</li>
</ul></li>
<li><strong>HAL DMA2D</strong> driver
<ul>
<li><strong>DMA2D HAL driver support added</strong></li>
<li>Alpha Position Configuration for output, foreground (FG), and
background (BG) layers.</li>
<li>Advanced Graphics Configurations: Support downscaling, rotation, and
stencil buffer setup for output blender, foreground (FG), and background
(BG) layers.</li>
<li>Command List Mode Configuration :
<ul>
<li>This update enhances DMA2D capabilities by enabling efficient
offloading of graphic operations through command lists managed in a ring
buffer.</li>
</ul></li>
<li>Ring Buffer Configuration and linear command lists (LDMs)
build.</li>
<li>Data transfer support including register-to-memory,
memory-to-memory, blending, and CLUT loading.</li>
<li>Command list insertion and execution control with optional interrupt
handling.</li>
<li>Ability to suspend, resume, or abort command list execution.</li>
<li>General Purpose Flags (GPFLAGs) configuration for synchronization
and behavior control during execution.</li>
</ul></li>
<li><strong>HAL DTS</strong> driver
<ul>
<li>Fixed missing ‘input trigger selection’ list for PLAY1 in H5
4M.</li>
</ul></li>
<li><strong>HAL ETH</strong> driver
<ul>
<li>Corrected macDefaultConf structure to include JabberTimeout
field.</li>
<li>Fixed Ethernet Bus Fault error for Rx Context Descriptor and removed
CSC MACTSCR config.</li>
<li>Made HAL_ETH_PTP_AddendUpdate call static.</li>
<li>Fixed CHM generation.</li>
<li>Resolved Coverity issues on H5 4M.</li>
<li>Updated Ethernet driver for H5 4M.</li>
</ul></li>
<li><strong>HAL EXTI</strong> driver
<ul>
<li>Fixed MISRA-C:2012 compliance warnings.</li>
<li>Fixed Doxygen documentation issues.</li>
</ul></li>
<li><strong>HAL FDCAN</strong> driver
<ul>
<li>Added support for FDCAN3 instance (H5 4M).</li>
</ul></li>
<li><strong>HAL FLASH</strong> driver
<ul>
<li>Fixed MISRA-C:2012 compliance warnings for H5.</li>
<li>Corrected descriptions in FLASH_EraseInitTypeDef struct.</li>
<li>Fixed ADDRESS_OFFSET_EDATA & EDATA_BANK_SIZE for H5 4M.</li>
<li>Fixed HAL_FLASHEx_GetEccInfo API.</li>
</ul></li>
<li><strong>HAL FMC</strong> driver
<ul>
<li>Added missing 32-bit data size for SDRAM in ll_fmc.h.</li>
<li>Fixed MISRA-C:2012 Rule 12.2 violations and related warnings.</li>
<li>Fixed HAL_NAND_Read_Page_8b and HAL_NAND_Read_SpareArea_8b
APIs.</li>
<li>Set FMC NAND/NOR/SRAM under bank compilation switch as not supported
by all devices.</li>
</ul></li>
<li><strong>HAL GENERIC</strong> driver
<ul>
<li>Resolved MISRA-C:2012 issues in ll_system.h and hal.c.</li>
<li>Added compilation flag for DMA2D Command List Mode.</li>
<li>Added MDF driver and ism330dhcx BSP component.</li>
<li>Added SBS_ETH_10BT1S macro.</li>
<li>Added BSP drivers and CCB includes to stm32h5xx_hal_conf.h.</li>
<li>Fixed Doxygen issues and typos.</li>
<li>Updated hal_conf_template to support SDIO driver.</li>
</ul></li>
<li><strong>HAL GPIO</strong> driver