-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathRelease_Notes.html
More file actions
2419 lines (2419 loc) · 122 KB
/
Release_Notes.html
File metadata and controls
2419 lines (2419 loc) · 122 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 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-stm32cubeh5-firmware-package">Release Notes for <mark> STM32CubeH5 Firmware Package </mark></h1>
<p>Copyright © 2025 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>STM32Cube</figcaption>
</figure>
<p>The <strong>drivers</strong> provided within this package <strong>support</strong> the <strong>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>
<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-section8" checked aria-hidden="true"> <label for="collapse-section8" checked aria-hidden="true"><strong>V1.5.0 / 05-February-2025</strong></label>
<div>
<p>Maintenance Release V1.5.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</p>
<h2 id="main-changes">Main Changes</h2>
<ul>
<li>Add <strong>SDIO HAL</strong> driver compliant with SDIO 3.0</li>
<li>Remove <strong>secure_manager_api</strong> middleware</li>
<li>Remove <strong>Certificates</strong>, <strong>ITSbuilder</strong> and <strong>IAT_Verifier</strong> utilities</li>
<li>Update <strong>mbed-crypto</strong> version to mbed-tls-v3.6.2_20241125</li>
<li>Add <strong>2 new I3C</strong> examples <strong>I3C_Target_Private_Command_DMA</strong> and <strong>I3C_Controller_Private_Command_DMA</strong> with MDK-ARM and STM32CubeIDE toolchains support on NUCLEO-H503RB board</li>
<li>Add <strong>ADC_MultiChannelSingleConversion</strong> example with EWARM, MDK-ARM and STM32CubeIDE toolchains support on NUCLEO-H533RE board</li>
<li>Add <strong>ADC_SingleConversion_TriggerTimer_DMA_Init</strong> LL_Example with EWARM toolchain support on NUCLEO-H563ZI board</li>
<li>Add <strong>“stm32h5xx_hal_sdio.c”</strong> driver to Templates’ projects with <strong>EWARM, MDK-ARM</strong> and <strong>STM32CubeIDE</strong> toolchains support on <strong>NUCLEO-H563ZI, STM32H573I-DK</strong> and <strong>NUCLEO-H533RE</strong> boards</li>
<li>Add <strong>DCACHE_Maintenance</strong> example with MDK-ARM and STM32CubeIDE toolchains support on STM32H573I-DK board</li>
</ul>
<h2 id="contents">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 376 examples and applications for easy understanding, all 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="cmsis-drivers-updates"><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) and <strong>RM0492</strong> (STM32H503xx 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"><strong>HAL/LL Drivers</strong> updates</h3>
<ul>
<li>HAL and LL drivers Maintenance 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)</li>
<li><p>The HAL and LL drivers provided within this package are <strong>MISRA-C, MCU ASTYLE</strong> and <strong>Coverity compliant</strong>, and have been reviewed with a static analysis tool to eliminate possible run-time errors</p></li>
<li><p><strong>HAL Drivers</strong> updates:</p>
<ul>
<li><strong>HAL</strong> driver
<ul>
<li>Add HAL_SDIO_MODULE_ENABLED, USE_HAL_SDIO_REGISTER_CALLBACKS, SDIO_MAX_IO_NUMBER and USE_SDIO_TRANSCEIVER defines in “hal_conf_template.h” file</li>
</ul></li>
<li><strong>HAL ETH</strong> driver
<ul>
<li>Add HAL_ETH_GetTxBuffersNumber define to get buffers in use number</li>
<li>Fix context descriptor not handled properly when timestamping is enabled</li>
</ul></li>
<li><strong>HAL SDMMC</strong> driver
<ul>
<li><strong>Add SDIO HAL driver compliant with SDIO 3.0</strong></li>
<li>Add defines of response results after operating with RPMB partition:
<ul>
<li>HAL_MMC_ERROR_RPMB_OPERATION_OK<br />
</li>
<li>HAL_MMC_ERROR_RPMB_GENERAL_FAILURE<br />
</li>
<li>HAL_MMC_ERROR_RPMB_AUTHENTICATION_FAILURE<br />
</li>
<li>HAL_MMC_ERROR_RPMB_COUNTER_FAILURE<br />
</li>
<li>HAL_MMC_ERROR_RPMB_ADDRESS_FAILURE<br />
</li>
<li>HAL_MMC_ERROR_RPMB_WRITE_FAILURE<br />
</li>
<li>HAL_MMC_ERROR_RPMB_READ_FAILURE<br />
</li>
<li>HAL_MMC_ERROR_RPMB_KEY_NOT_YET_PROG<br />
</li>
<li>HAL_MMC_ERROR_RPMB_COUNTER_EXPIRED<br />
</li>
<li>HAL_MMC_USER_AREA_PARTITION</li>
<li>HAL_MMC_BOOT_PARTITION1<br />
</li>
<li>HAL_MMC_BOOT_PARTITION2<br />
</li>
<li>HAL_MMC_RPMB_PARTITION<br />
</li>
<li>HAL_MMC_SwitchPartition<br />
</li>
<li>HAL_MMC_GetRPMBError<br />
</li>
</ul></li>
<li>Add Replay Protected Memory Block management defines:
<ul>
<li>HAL_MMC_RPMB_ProgramAuthenticationKey</li>
<li>HAL_MMC_RPMB_ProgramAuthenticationKey_IT<br />
</li>
<li>HAL_MMC_RPMB_GetWriteCounter</li>
<li>HAL_MMC_RPMB_GetWriteCounter_IT</li>
<li>HAL_MMC_RPMB_WriteBlocks<br />
</li>
<li>HAL_MMC_RPMB_WriteBlocks_IT</li>
<li>HAL_MMC_RPMB_ReadBlocks<br />
</li>
<li>HAL_MMC_RPMB_ReadBlocks_IT</li>
</ul></li>
<li><strong>HAL USB</strong> driver
<ul>
<li>SA0035 fixed</li>
</ul></li>
</ul></li>
</ul></li>
<li><p><strong>LL drivers</strong> :</p>
<ul>
<li><strong>LL SDMMC</strong> driver
<ul>
<li>Add SDIO defines:
<ul>
<li>SDMMC_SDIO_R5_ERROR<br />
</li>
<li>SDMMC_SDIO_R5_OUT_OF_RANGE<br />
</li>
<li>SDMMC_SDIO_R5_INVALID_FUNCTION_NUMBER<br />
</li>
<li>SDMMC_SDIO_R5_GENERAL_UNKNOWN_ERROR<br />
</li>
<li>SDMMC_SDIO_R5_IO_CURRENT_STATE<br />
</li>
<li>SDMMC_SDIO_R5_ILLEGAL_CMD<br />
</li>
<li>SDMMC_SDIO_R5_COM_CRC_FAILED<br />
</li>
<li>SDMMC_SDIO_R5_ERRORBITS<br />
</li>
<li>SDMMC_SDIO_MODE_BYTE<br />
</li>
<li>SDMMC_SDIO_MODE_BLOCK<br />
</li>
<li>SDMMC_SDIO_NO_INC<br />
</li>
<li>SDMMC_SDIO_AUTO_INC<br />
</li>
<li>SDMMC_SDIO_WO<br />
</li>
<li>SDMMC_SDIO_RAW<br />
</li>
</ul></li>
<li>Add SDIO SDMMC_SDIO_CCCR defines</li>
</ul></li>
</ul></li>
</ul>
<h3 id="middlewares-updates"><strong>Middlewares</strong> updates</h3>
<ul>
<li>Remove <strong>secure_manager_api</strong> middleware</li>
<li>Update <strong>mcuboot</strong> version to <strong>V1.7.2.27</strong></li>
<li>Update <strong>mbed-crypto</strong> version to <strong>mbed-tls-v3.6.2_20241125</strong></li>
<li>Update <strong>AzureRTOS</strong> middlewares version to <strong>V6.4.0.241011</strong></li>
</ul>
<h3 id="utilities-updates"><strong>Utilities</strong> updates</h3>
<ul>
<li>Remove <strong>Certificates</strong>, <strong>ITSbuilder</strong> and <strong>IAT_Verifier</strong> utilities</li>
</ul>
<h3 id="projects"><strong>Projects</strong></h3>
<ul>
<li>Add <strong>ADC_SingleConversion_TriggerTimer_DMA_Init</strong> LL_Example with EWARM toolchain support on NUCLEO-H563ZI board</li>
<li>Add <strong>“stm32h5xx_hal_sdio.c”</strong> driver to Templates’ projects with <strong>EWARM, MDK-ARM</strong> and <strong>STM32CubeIDE</strong> toolchains support on <strong>NUCLEO-H563ZI, STM32H573I-DK</strong> and <strong>NUCLEO-H533RE</strong> boards</li>
<li>Add <strong>2 new I3C</strong> examples <strong>I3C_Target_Private_Command_DMA</strong> and <strong>I3C_Controller_Private_Command_DMA</strong> with MDK-ARM and STM32CubeIDE toolchains support on NUCLEO-H503RB board</li>
<li>Rework <strong>OSPI_NOR_AutoPolling_DTR</strong> Example with EWARM and STM32CubeIDE (Debug) toolchain on STM32H573I-DK board</li>
<li>Rework <strong>OSPI_NOR_ReadWrite_DMA_DTR</strong> Example with STM32CubeIDE (Release) toolchain on STM32H573I-DK baord</li>
<li>Add <strong>DCACHE_Maintenance</strong> example with MDK-ARM and STM32CubeIDE toolchains support on STM32H573I-DK board</li>
<li>Add <strong>ADC_MultiChannelSingleConversion</strong> example with EWARM, MDK-ARM and STM32CubeIDE toolchains support on NUCLEO-H533RE board</li>
<li>Secure Manager Access Kit (containing binaries, script for provisioning, application and project template) no more available on STM32H5Cube firmware package, it is available in separate package <a href="https://www.st.com/en/embedded-software/stm32trustee-sm.html#overview">X-CUBE-SEC-M-H5</a></li>
</ul>
<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.5.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_dsp_v1.10.0_nn_v3.1.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.4.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.5.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.1.1</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.1.0</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 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="odd">
<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="even">
<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="odd">
<td style="text-align: left;">BSP mx25lm51245g</td>
<td style="text-align: left;">V3.0.2</td>
<td style="text-align: left;"><a href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32-mx25lm51245g/blob/v3.0.2/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<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="odd">
<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="even">
<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="odd">
<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>
</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.1.1</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.0</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;">mbed-crypto</td>
<td style="text-align: left;">mbed-tls-v3.6.2_20241125 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Middlewares/Third_Party/mbed-crypto/st_readme.txt">ST release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">mcuboot</td>
<td style="text-align: left;">V1.7.2.27 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Middlewares/Third_Party/mcuboot/st_readme.txt">ST release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">OpenBootloader</td>
<td style="text-align: left;">V6.1.1</td>
<td style="text-align: left;"><a href="Middlewares/ST/OpenBootloader/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">ThreadX</td>
<td style="text-align: left;">threadx-6.4.0.241011 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="https://github.com/azure-rtos/threadx/releases/tag/v6.2.0_rel">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">NetXduo</td>
<td style="text-align: left;">netxduo-6.4.0.241011 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="https://github.com/azure-rtos/netxduo/releases/tag/v6.2.0_rel">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">USBX</td>
<td style="text-align: left;">usbx-6.4.0.241011 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="https://github.com/azure-rtos/usbx/releases/tag/v6.2.0_rel">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FileX</td>
<td style="text-align: left;">filex-6.4.0.241011 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="https://github.com/azure-rtos/filex/releases/tag/v6.2.0_rel">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">LevelX</td>
<td style="text-align: left;">levelx-6.4.0.241011 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="https://github.com/azure-rtos/levelx/releases/tag/v6.2.0_rel">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.0.2</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;">GUI_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.3</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>
</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.1.2.zip">Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv9_STM32H5xx_V1.1.2.zip</a><br />
</li>
<li>This patch supports STM32H573/STM32H563/STM32H562/STM32H503/STM32H533/STM32H523 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.1.3.2.zip">Utilities\PC_Software\IDEs_Patches\MDK-ARM\Keil.STM32H5xx_DFP.1.3.2.zip</a></li>
<li>This patch supports STM32H573/STM32H563/STM32H562/STM32H503/STM32H533/STM32H523 devices</li>
</ul></li>
<li>STM32CubeIDE V1.18.0 (GCC13)</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>
</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>
</ul></li>
</ul>
<h2 id="dependencies">Dependencies</h2>
<ul>
<li>STM32CubeMX V6.14.0</li>
<li>The EMW3080B MXCHIP Wi-Fi module firmware version used is V2.3.4, for more details refer to Wi-Fi example readme files which can be found under Projects/STM32H573I-DK/Applications/NetXDuo.</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>Comment error in “MX_WIFI BSP Component” Release_Notes : “The EMW3080B MXCHIP Wi-Fi module firmware version has to be V2.3.4 instead of V2.3.4 rc 13”</li>
<li><p>The project NUCLEO-H563ZI/Applications/ThreadX/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</p></li>
<li>The following projects are not supported with MDK-ARM toolchain and will be provided in the next releases:
<ul>
<li>STM32H573I-DK/Demonstration</li>
<li>NUCLEO-H563ZI/Examples/DAC/SimpleConversion</li>
</ul></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-section7" aria-hidden="true"> <label for="collapse-section7" checked aria-hidden="true"><strong>V1.4.0 / 30-October-2024</strong></label>
<div>
<p>Maintenance Release V1.4.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</p>
<h2 id="main-changes-1">Main Changes</h2>
<ul>
<li>Update <strong>AzureRTOS</strong> Middleware version to <strong>V6.4.0</strong> and over <strong>50 applications</strong> aligned with V6.4.0 version upgrade</li>
<li>Add <strong>new</strong> USBPD Application <strong>USBPD_DRP_UX_DRD_HID</strong> with EWARM, MDK-ARM and STM32CubeIDE toolchains support on STM32H573I-DK board</li>
<li>Add <strong>2 new I3C</strong> examples <strong>I3C_Target_Private_Command_DMA</strong> and <strong>I3C_Controller_Private_Command_DMA</strong> with EWARM toolchain support on NUCLEO-H503RB board</li>
<li>Update <strong>mcuboot</strong> version to <strong>V1.7.2.25</strong></li>
<li>Update <strong>mbed-crypto</strong> version to <strong>mbed-tls-v3.6.1_20241004</strong></li>
<li>Update <strong>secure_manager_api</strong> version to <strong>V2.2.1</strong></li>
</ul>
<h2 id="contents-1">Contents</h2>
<h3 id="features-1"><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, Secure Manager API, and OpenBootloader).</li>
<li>Up to 373 examples and applications for easy understanding, all 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. It provides an ST proprietary SMAK solution, Arm® PSA API Compliant, and accessible by the non-secure domain. It can be additionally installed on STM32H5 to enable Cryptographic, Secure key management, Platform Attestation, Secure Firmware Update functions. For more details refer to the SMAK application. Please refer to <a href="https://wiki.st.com/stm32mcu/wiki/Security:How_to_start_with_Secure_Manager_default_configuration_on_STM32H5">Wiki page</a></p>
<h3 id="cmsis-drivers-updates-1"><strong>CMSIS Drivers</strong> updates</h3>
<ul>
<li>CMSIS Device Maintenance Release version of bits and registers definition aligned with <strong>RM0481</strong> (STM32H5 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>HAL and LL drivers Maintenance 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)</li>
<li><p>The HAL and LL drivers provided within this package are <strong>MISRA-C, MCU ASTYLE</strong> and <strong>Coverity compliant</strong>, and have been reviewed with a static analysis tool to eliminate possible run-time errors</p></li>
<li><p><strong>HAL Drivers</strong> updates:</p>
<ul>
<li><strong>HAL CRYP</strong> driver
<ul>
<li>Code quality enhancement MISRAC 2012 Rule-10.4</li>
</ul></li>
<li><strong>HAL DAC</strong> driver
<ul>
<li>HAL DAC calibration procedure (function HAL_DACEx_SelfCalibrate() ) fix to manage case of calibration factor equal to range maximum value (previously, in this case calibration factor was reset, leading to voltage accuracy not optimal)</li>
</ul></li>
<li><strong>HAL DMA_EX</strong> driver
<ul>
<li>Update CLLR register value</li>
<li>Remove duplicated assert checking</li>
</ul></li>
<li><strong>HAL FLASH</strong> driver
<ul>
<li>Update Flash driver to support 32 bits write operation in the EDATA area</li>
</ul></li>
<li><strong>HAL FLASH_EX</strong> driver
<ul>
<li>Add of HAL_FLASHEx_OBK_Swap_IT() function</li>
</ul></li>
<li><strong>HAL FMAC</strong> driver
<ul>
<li>Add action to abort, if configured, the DMAIn and/or the DMAOut in HAL_FMAC_FilterStop. This allows to reset the DMA State to READY</li>
</ul></li>
<li><strong>HAL GTZC</strong> driver
<ul>
<li>Updated HAL_GTZC_TZSC_MPCWM_ConfigMemAttributes() and HAL_GTZC_TZSC_MPCWM_GetConfigMemAttributes() for MPCWM3 and MPCWM4 to be aligned with the hardware specification</li>
</ul></li>
<li><strong>HAL LPTIM</strong> driver
<ul>
<li>Remove redundant IS_LPTIM_AUTORELOAD macro</li>
</ul></li>
<li><strong>HAL PKA</strong> driver
<ul>
<li>add check for MontgomeryParam not equal to null</li>
</ul></li>
<li><strong>HAL PWR</strong> driver
<ul>
<li>Add guidance for HAL_PWR_ConfigAttributes() API calls</li>
</ul></li>
<li><strong>HAL RCC driver</strong>
<ul>
<li>Fix incorrect HAL_RCCEx_GetPLLxClockFreq() when fractional part is enabled</li>
<li>Add g for HAL_RCC_ConfigAttributes() API calls</li>
</ul></li>
<li><strong>HAL RNG driver</strong>
<ul>
<li>Add HAL_RNG_ERROR_RECOVERSEED define</li>
</ul></li>
<li><strong>HAL RTC_EX driver</strong>
<ul>
<li>Add HAL_RTCEx_EnableRemapRtcOut2 and HAL_RTCEx_DisableRemapRtcOut2 defines<br />
</li>
</ul></li>
<li><strong>HAL SPI</strong> driver
<ul>
<li>Fix issue with HAL_SPI_Abort_IT in DMA mode to ensure DMA RX aborts after DMA TX</li>
<li>HAL code quality enhancement for MISRA-C2012 Rule-8.13</li>
</ul></li>
<li><strong>HAL UART</strong> driver
<ul>
<li>Fix DMA Rx abort procedure impact on ongoing Tx transfer in polling</li>
</ul></li>
<li><strong>HAL XSPI</strong> driver
<ul>
<li>Check BUSY flag instead of TC flag in indirect mode to be sure that command is well completed (FIFO flush)</li>
</ul></li>
</ul></li>
<li><strong>LL Drivers</strong> updates:
<ul>
<li><strong>LL DMA</strong> driver
<ul>
<li>Fix in linked list node initialization</li>
<li>Add missing assert checking in some LL linked-list case</li>
</ul></li>
<li><strong>LL RCC</strong> driver
<ul>
<li>Add missing definition and processing of LL_RCC_USB_CLKSOURCE_PLL2Q</li>
</ul></li>
<li><strong>LL RTC</strong> driver
<ul>
<li>Add LL_RTC_EnableRemapRtcOut2 define</li>
</ul></li>
<li><strong>LL USB</strong> driver
<ul>
<li>Fix added to support bulk transfer in double buffer mode</li>
</ul></li>
</ul></li>
</ul>
<h3 id="middlewares-updates-1"><strong>Middlewares</strong> updates</h3>
<ul>
<li>Update <strong>Azure RTOS</strong> version to <strong>V6.4.0</strong></li>
<li>Update <strong>mcuboot</strong> version to <strong>V1.7.2.25</strong></li>
<li>Update <strong>mbed-crypto</strong> version to <strong>mbed-tls-v3.6.1_20241004</strong>
<ul>
<li>Move to Mbed-TLS V3.6.1</li>
</ul></li>
<li>Update <strong>secure_manager_api</strong> version to <strong>V2.2.1</strong>
<ul>
<li>Implementation of the AEAD multipart PSA APIs</li>
</ul></li>
</ul>
<h3 id="utilities-updates-1"><strong>Utilities</strong> updates</h3>
<ul>
<li>No update</li>
</ul>
<h3 id="projects-1"><strong>Projects</strong></h3>
<ul>
<li>Update over <strong>50 applications</strong> aligned with V6.4.0 AzureRTOS middleware version upgrade</li>
<li>Add <strong>new</strong> Application <strong>USBPD_DRP_UX_DRD_HID</strong> with EWARM, MDK-ARM and STM32CubeIDE toolchains support under Projects/STM32H573I-DK/Applications/USBPD</li>
<li>Add <strong>2 new</strong> examples with <strong>EWARM</strong> toolchain support under Projects/NUCLEO-H503RB/Examples/I3C:
<ul>
<li><strong>I3C_Target_Private_Command_DMA</strong></li>
<li><strong>I3C_Controller_Private_Command_DMA</strong></li>
</ul></li>
<li>Rework of <strong>Fx_Dual_Instance</strong> project under Projects/STM32H573I-DK/Applications/FileX</li>
<li>Update RoT applications:
<ul>
<li>Add support of hardware cryptography for NUCLEO-H533RE, STM32H573I-DK boards</li>
<li>Support of initial installation of clear image binaries in execution slots</li>
<li>Boot time display added in OEMiRoT user applications</li>
</ul></li>
</ul>
<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.4.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-1"><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_dsp_v1.10.0_nn_v3.1.0 <span class="icon-st-update"></span></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.3.1 <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.4.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.1.1 <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.1.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 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="odd">
<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="even">
<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="odd">
<td style="text-align: left;">BSP mx25lm51245g</td>
<td style="text-align: left;">V3.0.2</td>
<td style="text-align: left;"><a href="https://htmlpreview.github.io/?https://github.com/STMicroelectronics/stm32-mx25lm51245g/blob/v3.0.2/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<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="odd">
<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="even">
<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="odd">
<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>
</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.1.1</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.0</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;">secure_manager_api</td>
<td style="text-align: left;">V2.2.1 <span class="icon-st-update"></span></td>
<td style="text-align: left;">[release notes]</td>
</tr>
<tr class="even">
<td style="text-align: left;">mbed-crypto</td>
<td style="text-align: left;">mbed-tls-v3.6.1_20241004 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Middlewares/Third_Party/mbed-crypto/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.25 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Middlewares/Third_Party/mcuboot/st_readme.txt">ST release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">OpenBootloader</td>
<td style="text-align: left;">V6.1.1</td>
<td style="text-align: left;"><a href="Middlewares/ST/OpenBootloader/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.240906 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="https://github.com/azure-rtos/threadx/releases/tag/v6.2.0_rel">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">NetXduo</td>
<td style="text-align: left;">netxduo-6.4.0.240906 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="https://github.com/azure-rtos/netxduo/releases/tag/v6.2.0_rel">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">USBX</td>
<td style="text-align: left;">usbx-6.4.0.240906 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="https://github.com/azure-rtos/usbx/releases/tag/v6.2.0_rel">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">FileX</td>
<td style="text-align: left;">filex-6.4.0.240906 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="https://github.com/azure-rtos/filex/releases/tag/v6.2.0_rel">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">LevelX</td>
<td style="text-align: left;">levelx-6.4.0.240906 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="https://github.com/azure-rtos/levelx/releases/tag/v6.2.0_rel">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.0.2</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;">GUI_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;">ITSbuilder</td>
<td style="text-align: left;">V1.1.2</td>
<td style="text-align: left;">[release notes]</td>
</tr>
<tr class="even">
<td style="text-align: left;">IAT_Verifier</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;">[release notes]</td>
</tr>
<tr class="odd">
<td style="text-align: left;">Certificates</td>
<td style="text-align: left;">v1.2.0.240531</td>
<td style="text-align: left;">[release notes]</td>
</tr>
<tr class="even">
<td style="text-align: left;">ROT_AppliConfig</td>
<td style="text-align: left;">V1.1.3</td>
<td style="text-align: left;"><a href="Utilities/PC_Software/ROT_AppliConfig/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<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>
</tbody>
</table>
<h2 id="development-toolchains-and-compilers-1">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.1.2.zip">Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv9_STM32H5xx_V1.1.2.zip</a><br />
</li>
<li>This patch supports STM32H573/STM32H563/STM32H562/STM32H503/STM32H533/STM32H523 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.1.3.2.zip">Utilities\PC_Software\IDEs_Patches\MDK-ARM\Keil.STM32H5xx_DFP.1.3.2.zip</a></li>
<li>This patch supports STM32H573/STM32H563/STM32H562/STM32H503/STM32H533/STM32H523 devices</li>
</ul></li>
<li>STM32CubeIDE V1.16.1 (GCC12)</li>
</ul>
<h2 id="supported-devices-and-boards-1">Supported Devices and boards</h2>
<ul>
<li>Devices:
<ul>
<li>STM32H573xx/STM32H563xx/STM32H562xx revX</li>
<li>STM32H503xx revX</li>
<li>STM32H533xx/STM32H523xx revA</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>
</ul></li>
</ul>
<h2 id="dependencies-1">Dependencies</h2>
<ul>
<li>STM32CubeMX V6.13.0</li>
<li>The SMAK Non-Secure application requires the installation of Secure Manager Package (<a href="https://www.st.com/content/st_com/en/ecosystems/stm32trust.html">X-CUBE-SEC-M-H5</a>) delivered outside this package.</li>
<li>The EMW3080B MXCHIP Wi-Fi module firmware version used is V2.3.4, for more details refer to Wi-Fi example readme files which can be found under Projects/STM32H573I-DK/Applications/NetXDuo.</li>
</ul>
<h2 id="known-limitations-1">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>Comment error in “MX_WIFI BSP Component” Release_Notes : “The EMW3080B MXCHIP Wi-Fi module firmware version has to be V2.3.4 instead of V2.3.4 rc 13”</li>
<li>The project NUCLEO-H563ZI/Applications/ThreadX/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>
<li>The Project STM32H573I-DK/Examples/OCTOSPI/OSPI_NOR_AutoPolling_DTR does not work with High size optimization (-Oz) on EWARM. It will be reworked for the next release</li>
<li>After regenerating, with STM32CubeMX tool, the following networking applications based on Ethernet, the plug/unplug functionality of the network cable will no longer operational:
<ul>
<li>NUCLEO-H563ZI/Applications/NetXDuo/Nx_SNTP_Client</li>
<li>NUCLEO-H563ZI/Applications/NetXDuo/Nx_Iperf</li>
<li>STM32H573I-DK/Applications/NetXDuo/Nx_WebServer</li>
<li>STM32H573I-DK/Applications/NetXDuo/Nx_MQTT_Client</li>
</ul></li>
<li>The following project will be reworked for the next release:
<ul>
<li>NUCLEO-H533RE/Examples/ADC/ADC_MultiChannelSingleConversion</li>
</ul></li>
<li>The following projects are not supported with MDK-ARM toolchain and will be provided in the next releases:
<ul>
<li>STM32H573I-DK/Demonstration</li>
<li>STM32H573I-DK/Examples/DCACHE/DCACHE_Maintenance</li>
<li>NUCLEO-H563ZI/Examples/DAC/SimpleConversion</li>
<li>NUCLEO-H503RB/Examples/I3C/I3C_Target_Private_Command_DMA</li>
<li>NUCLEO-H503RB/Examples/I3CI/3C_Controller_Private_Command_DMA</li>
</ul></li>
<li>The following projects are not supported with STM32CubeIDE toolchain (Debug and Release) and will be provided in the next releases:
<ul>
<li>STM32H573I-DK/Examples/DCACHE/DCACHE_Maintenance</li>
<li>NUCLEO-H503RB/Examples/I3C/I3C_Target_Private_Command_DMA</li>
<li>NUCLEO-H503RB/Examples/I3CI/3C_Controller_Private_Command_DMA</li>
</ul></li>
<li>The following project is not supported with STM32CubeIDE toolchain (Release) and will be provided in the next releases:
<ul>
<li>STM32H573I-DK/Examples/OCTOSPI/OSPI_NOR_ReadWrite_DMA_DTR</li>
</ul></li>
<li>The following project is not supported with STM32CubeIDE toolchain (Debug) and will be provided in the next releases:
<ul>
<li>STM32H573I-DK/Examples/OCTOSPI/OSPI_NOR_AutoPolling_DTR</li>
</ul></li>
</ul>
<h2 id="backward-compatibility-1">Backward Compatibility</h2>
<ul>
<li>Not applicable</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section6" aria-hidden="true"> <label for="collapse-section6" checked aria-hidden="true"><strong>V1.3.0 / 05-June-2024</strong></label>
<div>
<h2 id="main-changes-2">Main Changes</h2>
<ul>
<li>Maintenance Release V1.3.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>Update of Secure Manager SMAK applications to demonstrate the support of low power modes, and error codes to ease the debug of non-secure applications.</li>
<li>Add ROT Application support on STM32H52Xxx (256K flash configurations) and STM32H56Xxx (1M flash configurations) devices</li>
</ul>
<h2 id="contents-2">Contents</h2>
<h3 id="features-2"><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, Secure Manager API, and OpenBootloader).</li>
<li>Up to 361 examples and applications for easy understanding, all 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. It provides an ST proprietary SMAK solution, Arm® PSA API Compliant, and accessible by the non-secure domain. It can be additionally installed on STM32H5 to enable Cryptographic, Secure key management, Platform Attestation, Secure Firmware Update functions. For more details refer to the SMAK application. Please refer to <a href="https://wiki.st.com/stm32mcu/wiki/Security:How_to_start_with_Secure_Manager_default_configuration_on_STM32H5">Wiki page</a></p>
<h3 id="cmsis-drivers-updates-2"><strong>CMSIS Drivers</strong> updates</h3>
<ul>
<li>CMSIS Device Maintenance Release version of bits and registers definition aligned with <strong>RM0481</strong> (STM32H5 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>
<li>Add RNG_CR_NIST_VALUE, RNG_NSCR_NIST_VALUE and RNG_HTCR_NIST_VALUE defines</li>
<li>Add Bits definition for RNG_NSCR register : Add RNG_NSCR_EN_OSC1, RNG_NSCR_EN_OSC2, RNG_NSCR_EN_OSC3, RNG_NSCR_EN_OSC4, RNG_NSCR_EN_OSC5 and RNG_NSCR_EN_OSC6 defines</li>
<li>Add USART_DMAREQUESTS_SW_WA define</li>
<li>Rename EXTI_RTSR2_TR to EXTI_RTSR2_RT define</li>
<li>Rename EXTI_FTSR2_TR to EXTI_FTSR2_FT define</li>
</ul>
<h3 id="halll-drivers-updates-2"><strong>HAL/LL Drivers</strong> updates</h3>
<ul>
<li>HAL and LL drivers Maintenance 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)</li>
<li><p>The HAL and LL drivers provided within this package are <strong>MISRA-C, MCU ASTYLE</strong> and <strong>Coverity compliant</strong>, and have been reviewed with a static analysis tool to eliminate possible run-time errors</p></li>
<li><strong>HAL Drivers</strong> updates
<ul>
<li><strong>HAL I3C</strong> driver
<ul>
<li>Add HAL_I3C_TARGET_RESET_PATTERN, HAL_I3C_HDR_EXIT_PATTERN, HAL_I3C_RESET_PATTERN_DISABLE, HAL_I3C_RESET_PATTERN_ENABLE and IS_I3C_RESET_PATTERN defines</li>
<li>Add HAL_I3C_Ctrl_SetConfigResetPattern, HAL_I3C_Ctrl_GetConfigResetPattern and HAL_I3C_Ctrl_GenerateArbitration functions</li>
</ul></li>
</ul></li>
<li><strong>LL Drivers</strong> updates
<ul>
<li><strong>LL RNG</strong> driver
<ul>
<li>Add LL_RNG_SetNoiseConfig and LL_RNG_GetNoiseConfig functions</li>