-
Notifications
You must be signed in to change notification settings - Fork 67
/
Release_Notes.html
5012 lines (5012 loc) · 244 KB
/
Release_Notes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>Release Notes for STM32CubeU5 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-stm32cubeu5-firmware-package">Release Notes for <mark> STM32CubeU5 Firmware Package </mark></h1>
<p>Copyright © 2021 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 STM32CubeU5 for STM32U5 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 libraries such as ThreadX, FileX, USBX, NetDuoX, OpenBootloader, USBPD, trustedfirmware, mbed-crypto, Network Library…</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>
<li><p>A new LPBAM (Low Power Background Autonomous Mode) utility which is a software helper that assists STM32U5 users in the elaboration of LPBAM scenarios.</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 CodeSonar® 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>STM32U535 / STM32U545 / STM32U575 / STM32U585 / STM32U595 / STM32U5A5 / STM32U599 / STM32U5A9 / STM32U5F7 / STM32U5G7 / STM32U5F9 / STM32U5G9 lines.</strong></p>
<ul>
<li>For quick getting started with the STM32CubeU5 firmware package, refer to <a href="https://www.st.com/resource/en/user_manual/um2883-getting-started-with-stm32cubeu5-for-stm32u5-series-stmicroelectronics.pdf">UM2883</a> you can download firmware updates and all the latest documentation from <a href="https://www.st.com/en/embedded-software/stm32cubeu5.html">www.st.com/stm32cubeU5</a></li>
<li>Below links to the most useful documents:
<ul>
<li><a href="https://www.st.com/resource/en/user_manual/um2883-getting-started-with-stm32cubeu5-for-stm32u5-series-stmicroelectronics.pdf">UM2883: Getting started with STM32CubeU5 for STM32U5 Series</a></li>
<li><a href="https://www.st.com/resource/en/user_manual/um2911-description-of-stm32u5-hal-and-lowlayer-driver-stmicroelectronics.pdf">UM2911: Description of STM32U5 HAL and low-layer driver</a></li>
<li><a href="https://www.st.com/resource/en/user_manual/um2298-stm32cube-bsp-drivers-development-guidelines-stmicroelectronics.pdf">UM2298: STM32Cube BSP drivers development guidelines</a></li>
<li><a href="https://www.st.com/resource/en/user_manual/um2913-stm32cubeu5-bu585iiot02a-web-server-demonstration-firmware-stmicroelectronics.pdf">UM2913: STM32CubeU5 B-U585I-IOT02A web server demonstration firmware</a></li>
<li><a href="https://www.st.com/resource/en/user_manual/um2912-stm32cubeu5-stm32u575iev-demonstration-firmware-stmicroelectronics.pdf">UM2912: STM32CubeU5 STM32U575I-EV demonstration firmware</a><br />
</li>
<li><a href="https://www.st.com/resource/en/user_manual/um2851-getting-started-with-stm32cubeu5-tfm-application-stmicroelectronics.pdf">UM2851: Getting started with STM32CubeU5 TFM application</a></li>
<li><a href="https://www.st.com/resource/en/user_manual/um2852-stm32u585xx-security-guidance-for-psa-certified-level-3-with-sesip-profile-stmicroelectronics.pdf">UM2852: STM32U585xx security guidance for PSA Certified™ Level 3 with SESIP Profile</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-section10" checked aria-hidden="true"> <label for="collapse-section10" checked aria-hidden="true"><strong>V1.6.0 / 05-June-2024</strong></label>
<div>
<h2 id="main-changes">Main Changes</h2>
<ul>
<li>Maintenance Release V1.6.0 of <span style="font-weight: bold;">STM32CubeU5</span> Firmware Package to deploy the new HAL SDIO driver.</li>
<li>General updates to fix known defects and implementation enhancements.</li>
<li>Upgrade <strong>mbed-crypto</strong> Lib to use <strong>v2.28.8 (ST modified 2024-05-27)</strong>.</li>
<li>Upgrade <strong>trustedfirmware</strong> Lib to use <strong>v1.3.0.11</strong>.</li>
<li>Upgrade <strong>mcuboot</strong> Lib to use <strong>v1.7.2.24</strong>.</li>
</ul>
<h2 id="contents">Contents</h2>
<h3 id="halll-drivers-updates"><strong>HAL/LL Drivers</strong> updates</h3>
<ul>
<li><strong>HAL GENERIC</strong> driver
<ul>
<li>update stm32u5xx_hal_conf_template file to add the support for the new HAL SDIO driver.</li>
</ul></li>
<li><strong>HAL CORTEX</strong> driver
<ul>
<li>Use MPUx instead of MPU inside MPU_ConfigRegion() API when disabling the region.</li>
</ul></li>
<li><strong>HAL DSI</strong> driver
<ul>
<li>Update startup sequence: PLL tuning must be done before PLL Enable.</li>
</ul></li>
<li><strong>HAL DAC</strong> driver
<ul>
<li>Fix HAL_DACEx_SelfCalibrate() API 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>
<li>Update trimming factor to use 6bits width.</li>
</ul></li>
<li><strong>HAL SDMMC</strong> driver
<ul>
<li>Support new HAL SDIO driver.</li>
</ul></li>
</ul>
<h3 id="bsp-drivers-updates"><strong>BSP Drivers</strong> updates</h3>
<ul>
<li>B-U585I-IOT02A/ STM32U5x9J-DK/ STM32U5xx_Nucleo/ STM32U575I-EV:
<ul>
<li>Fix printf() API implementation to be compliant with IAR 9.x.</li>
</ul></li>
<li>B-U585I-IOT02A:
<ul>
<li>Update BSP_OSPI_RAM_Init() API to be compliant with MISRAC2012 rule 10.4.</li>
</ul></li>
<li>STM32U5xx_Nucleo:
<ul>
<li>Update USBPD_PWR driver to be compliant with MISRAC2012 rules 2.3 and 10.4_a.</li>
</ul></li>
</ul>
<h3 id="middlewares-updates"><strong>Middlewares</strong> updates</h3>
<ul>
<li>Upgrade <strong>mbed-crypto</strong> Lib to use <strong>v2.28.8_20240527</strong></li>
<li>Upgrade <strong>trustedfirmware</strong> Lib to use <strong>v1.3.0.11</strong></li>
<li>Upgrade <strong>mcuboot</strong> Lib to use <strong>v1.7.2.24</strong></li>
</ul>
<h3 id="projects-updates"><strong>Projects</strong> updates</h3>
<ul>
<li>Fix printf() API implementation to be compliant with IAR 9.x.</li>
<li>Update Template projects to support new HAL SDIO driver.</li>
<li>Update HAL SMBUS examples available for NUCLEO-U575ZI-Q board to configure digital filter:
<ul>
<li>Add a call to HAL_SMBUS_ConfigDigitalFilter() API inside MX_I2Cx_SMBUS_Init() API.</li>
</ul></li>
<li>General update to align user tags naming sections with STM32CubeMx V6.12.0</li>
<li>Update scripts of SBSFU and TFM applications to:
<ul>
<li>Add missing -M (–max-sectors) in the .sh files.</li>
<li>Use AppliCfg instead of imgtool flash commands.</li>
<li>Remove the –hardRst option to work with latest CubeProgrammer versions.</li>
<li>Use the correct –max-sectors value in imgtool command during image preparation.</li>
</ul></li>
<li>Fix in TFM application for the test Protection failure issue when using STM32CubeIDE1.15.0</li>
<li>Update of mbeb-crypto projects for security fixes.</li>
<li>Update of mcuboot projects.</li>
</ul>
<h3 id="utilities-updates"><strong>Utilities</strong> updates</h3>
<ul>
<li>Upgrade EWARM and MDK-ARM patches to support new STM32U5 part numbers.</li>
</ul>
<h3 id="section"></h3>
<p>The <strong>STM32CubeU5</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"><strong>STM32CubeProjectsList.html</strong></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.6.0</td>
<td style="text-align: left;"><a href="Projects/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<p><strong>Notes:</strong></p>
<ul>
<li>The following sequence is needed to disable TrustZone:
<ul>
<li>Boot from user Flash memory:
<ul>
<li>Make sure that secure and non-secure applications are well loaded and executed (jump done on non-secure application)</li>
<li>If not yet done, set RDP to level 1 through STM32CubeProgrammer. Then only Hotplug connection is possible during non-secure application execution</li>
<li>Use a power supply different from ST-LINK in order to be able to connect to the target</li>
<li>Uncheck the TZEN box and set RDP to level 0 (option byte value 0xAA), then click on Apply</li>
</ul></li>
<li>Boot from RSS:
<ul>
<li>Make sure to apply a high level on BOOT0 pin (make sure that nSWBOOT0 Option Byte is checked)</li>
<li>If not yet done, set RDP to level 1 through STM32CubeProgrammer. Then only Hotplug connection is possible during non-secure application execution</li>
<li>Use a power supply different from ST-LINK in order to be able to connect to the target</li>
<li>Uncheck the TZEN box and set RDP to level 0 (option byte value 0xAA), then click on Apply Please refer to AN5347 for more details</li>
</ul></li>
</ul></li>
<li>The MicroLIB option should be enabled to display messages in HyperTerminal in the <strong>MDK-ARM</strong> projects. Detailed list is in the Project’s <a href="Projects/Release_Notes.html">release notes</a>.</li>
<li>The user should unplug then Plug STLINK connection on Slave Board to perform a power-on-reset when running I2C_WakeUpFromStop example on NUCLEO-U575ZI-Q board.</li>
</ul>
<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/General/html/index.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32U5xx CMSIS</td>
<td style="text-align: left;">V1.4.0</td>
<td style="text-align: left;"><a href="Drivers/CMSIS/Device/ST/STM32U5xx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32U5xx HAL <span class="icon-st-update"></span></td>
<td style="text-align: left;">V1.6.0</td>
<td style="text-align: left;"><a href="Drivers/STM32U5xx_HAL_Driver/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32U5xx NUCLEO <span class="icon-st-update"></span></td>
<td style="text-align: left;">V1.2.2</td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32U5xx_Nucleo/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32U575I-EV <span class="icon-st-update"></span></td>
<td style="text-align: left;">V1.4.1</td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32U575I-EV/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP B-U585I-IOT02A <span class="icon-st-update"></span></td>
<td style="text-align: left;">V1.4.1</td>
<td style="text-align: left;"><a href="Drivers/BSP/B-U585I-IOT02A/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32U5x9J-DK <span class="icon-st-update"></span></td>
<td style="text-align: left;">V1.3.1</td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32U5x9J-DK/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32U5G9J-DK2</td>
<td style="text-align: left;">V1.2.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32U5G9J-DK2/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP aps512xx</td>
<td style="text-align: left;">V1.0.2</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/aps512xx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP aps6408</td>
<td style="text-align: left;">V1.0.2</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/aps6408/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="Drivers/BSP/Components/Common/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="Drivers/BSP/Components/cs42l51/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP gt911</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/gt911/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP hts221</td>
<td style="text-align: left;">V5.5.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/hts221/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP hx8347i</td>
<td style="text-align: left;">V2.0.3</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/hx8347i/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP iis2mdc</td>
<td style="text-align: left;">V1.3.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/iis2mdc/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.3.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/ism330dhcx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP lps22hh</td>
<td style="text-align: left;">V1.4.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/lps22hh/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP lsm6dso</td>
<td style="text-align: left;">V1.7.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/lsm6dso/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP m24256</td>
<td style="text-align: left;">V1.0.2</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/m24256/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP mfxstm32l152</td>
<td style="text-align: left;">V4.0.1</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/mfxstm32l152/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="Drivers/BSP/Components/mx_wifi/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP mx25lm51245g</td>
<td style="text-align: left;">V2.0.9</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/mx25lm51245g/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP mx25um51245g</td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/mx25um51245g/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP mx66uw1g45g</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/mx66uw1g45g/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP ov5640</td>
<td style="text-align: left;">V3.2.4</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/ov5640/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP rk050hr18</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/rk050hr18/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP sitronix</td>
<td style="text-align: left;">V1.0.3</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/sitronix/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP stm32wb_at</td>
<td style="text-align: left;">V1.0.12</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/stm32wb_at/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP stts22h</td>
<td style="text-align: left;">V1.5.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/stts22h/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP sx8651</td>
<td style="text-align: left;">V1.0.3</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/sx8651/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.2</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/tcpp0203/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP veml3235</td>
<td style="text-align: left;">V1.0.3</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/veml3235/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP vl53l5cx</td>
<td style="text-align: left;">V1.0.7</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/vl53l5cx/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_TouchSensing_Library</td>
<td style="text-align: left;">V2.2.11</td>
<td style="text-align: left;"><a href="Middlewares/ST/STM32_TouchSensing_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32_Network_Library</td>
<td style="text-align: left;">V2.3.0</td>
<td style="text-align: left;"><a href="Middlewares/ST/STM32_Network_Library/Release_notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32_USBPD_Core_Library</td>
<td style="text-align: left;">V4.1.2</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;">u5_v3.3.0</td>
<td style="text-align: left;"><a href="Middlewares/ST/STM32_USBPD_Library/Devices/STM32U5XX/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">mbed-crypto <span class="icon-st-update"></span></td>
<td style="text-align: left;">mbed-tls-v2.28.8_20240527</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;">STSAFE_A1xx</td>
<td style="text-align: left;">MW_V3.3.5</td>
<td style="text-align: left;"><a href="Middlewares/ST/STSAFE_A1xx/Release_Notes.html">ST release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">SE_STSAFEA_API</td>
<td style="text-align: left;">SE_STSAFEA_API_V1.0.0</td>
<td style="text-align: left;"><a href="Middlewares/ST/SE_STSAFEA_API/Release_Notes.html">ST release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">trustedfirmware <span class="icon-st-update"></span></td>
<td style="text-align: left;">tfm/v1.3.0.11</td>
<td style="text-align: left;"><a href="Middlewares/Third_Party/trustedfirmware/st_readme.txt">ST release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">mcuboot <span class="icon-st-update"></span></td>
<td style="text-align: left;">v1.7.2.24</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.2.0.221223</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.2.0.221223</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.2.0.221223</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.2.0.221223</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.2.0.221223</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>
<tr class="even">
<td style="text-align: left;">cmsis_rtos_threadx</td>
<td style="text-align: left;">tx-cmsis-1.2.0.230421</td>
<td style="text-align: left;"><a href="Middlewares/ST/cmsis_rtos_threadx/Release_Notes.html">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.4</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;">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>
<tr class="even">
<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="odd">
<td style="text-align: left;">lcd</td>
<td style="text-align: left;">V2.0.3</td>
<td style="text-align: left;"><a href="Utilities/lcd/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">lpbam</td>
<td style="text-align: left;">V1.4.0</td>
<td style="text-align: left;"><a href="Utilities/lpbam/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<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>
</tbody>
</table>
<h2 id="development-toolchains-and-compilers">Development toolchains and compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain <strong>V9.20.4</strong> + ST-LINK, patches available here:
<ul>
<li><a href="Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv8_STM32U53x-54x_V1.0.3.zip">Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv8_STM32U53x-54x_V1.0.3.zip</a>
<ul>
<li>This patch supports STM32U535/545 devices</li>
</ul></li>
<li><a href="Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv8_STM32U57x-58x_V1.4.2.zip">Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv8_STM32U57x-58x_V1.4.2.zip</a>
<ul>
<li>This patch supports STM32U575/585 devices</li>
</ul></li>
<li><a href="Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv8_STM32U59x-5Ax_V1.3.1.zip">Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv8_STM32U59x-5Ax_V1.3.1.zip</a>
<ul>
<li>This patch supports STM32U595/5A5/599/5A9 devices</li>
</ul></li>
<li><a href="Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv8_STM32U5Fx-5Gx_V1.0.1.zip">Utilities\PC_Software\IDEs_Patches\EWARM\EWARMv8_STM32U5Fx-5Gx_V1.0.1.zip</a>
<ul>
<li>This patch supports STM32U5F7/5G7/5F9/5G9 devices</li>
</ul></li>
</ul></li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain <strong>V5.37</strong> which supports ARM Compiler 6 (AC-5 like warnings)+ ST-LINK, patch available here:
<ul>
<li><a href="Utilities\PC_Software\IDEs_Patches\MDK-ARM\Keil.STM32U5xx_DFP.2.2.3.zip">Utilities\PC_Software\IDEs_Patches\MDK-ARM\Keil.STM32U5xx_DFP.2.2.3.zip</a>
<ul>
<li>This patch supports STM32U535/545/575/585/595/5A5/599/5A9/5F7/5G7/5F9/5G9 devices</li>
</ul></li>
</ul></li>
<li>STM32CubeIDE <strong>V1.15.0</strong> (gcc12)</li>
</ul>
<h2 id="supported-devices-and-boards">Supported Devices and boards</h2>
<ul>
<li>Devices:
<ul>
<li>STM32U5F7/STM32U5G7/STM32U5F9/STM32U5G9 devices rev Z</li>
<li>STM32U575/STM32U585 devices rev W</li>
<li>STM32U595/STM32U5A5/STM32U599/STM32U5A9 devices rev W</li>
<li>STM32U535/STM32U545 devices rev Y</li>
</ul></li>
<li>Boards:
<ul>
<li>NUCLEO-U575ZI-Q Nucleo board rev.C</li>
<li>NUCLEO-U5A5ZJ-Q Nucleo board rev.C</li>
<li>NUCLEO-U545RE-Q Nucleo board rev.D</li>
<li>STM32U575I-EV Evaluation board rev.C</li>
<li>B-U585I-IOT02A Discovery board rev.D</li>
<li>STM32U5A9J-DK Discovery board rev.B</li>
<li>STM32U5G9J-DK1 Discovery board rev.B</li>
<li>STM32U5G9J-DK2 Discovery board rev.C</li>
</ul></li>
</ul>
<h2 id="dependencies">Dependencies</h2>
<ul>
<li>This software release is compatible with:
<ul>
<li>STM32CubeMX version V6.12.0</li>
<li>STM32CubeProgrammer version V2.16.0</li>
</ul></li>
<li>It is recommended to use CLI of STM32CubeProgrammer for execution of SBSFU and TFM applications, please refer to readme file of applications for more details</li>
<li>The BLE_AT_Client application requires to have Flash BLE_AT_Server module application using STM32CubeProgrammer: file BLE_AT_Server_reference.hex present in .\STM32Cube_FW_WB_V1.x.x\Projects\P-NUCLEO-WB55.Nucleo\Applications\BLE\BLE_AT_Server\Binary\BLE_AT_Server_reference.hex</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 at Projects\B-U585I-IOT02A under Applications\NetXDuo and \Demonstrations\IOT_HTTP_WebServer.</li>
<li>The IOT_HTTP_WebServer demonstration uses an updated version of STM32CubeU5_Demo_U585I-IOT02A_v1.2.hex binaries. To upgrade your B-U585I-IOT02A Discovery board with the required version V1.2, please visit <a href="https://www.st.com/en/evaluation-tools/b-u585i-iot02a.html#documentation">B-U585I-IOT02A compiled demo binary</a></li>
<li>The EVAL Demonstration requires to have STM32CubeU5_Demo_STM32U575I-EV.hex binaries on your STM32U575I-EV Evaluation board with the required version V1.0. To upgrade your board, please visit <a href="https://www.st.com/en/evaluation-tools/stm32u575i-ev.html#documentation">STM32U575I-EV compiled demo binary</a></li>
</ul>
<h2 id="known-limitations">Known Limitations</h2>
<ul>
<li>Some project are not generated with STM32CubeMX tool for the exhaustive list please refer to the table available in <a href="Projects/STM32CubeProjectsList.html"><strong>STM32CubeProjectsList.html</strong></a></li>
<li>The component “USBX/CoreSystem” must be selected alongside either “USBX/UX Host CoreStack” or “USBX/UX Device CoreStack”</li>
<li>In NetXDuo, some configuration flags, that are not used in the STM32Cube FW package examples, might be non-functional when combined. This limitation will be fixed in upcoming releases</li>
<li>B-U585I-IOT02A\Applications\NetXDuo\Nx_HTTP_SSE project is not provided with STM32CubeIDE release configuration. This limitation will be fixed in upcoming releases</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 devices MX66UW1G45G and MX66LM1G45G are driven by the same BSP component driver.</li>
</ul>
<h2 id="backward-compatibility">Backward compatibility</h2>
<ul>
<li>None.</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section9" aria-hidden="true"> <label for="collapse-section9" aria-hidden="true"><strong>V1.5.0 / 13-February-2024</strong></label>
<div>
<h2 id="main-changes-1">Main Changes</h2>
<p>Maintenance Release V1.5.0 of <span style="font-weight: bold;">STM32CubeU5</span> Firmware Package supporting <strong>STM32U535xx, STM32U545xx, STM32U575xx, STM32U585xx, STM32U595xx, STM32U5A5xx, STM32U599xx, STM32U5A9xx, STM32U5F7xx, STM32U5G7xx, STM32U5F9xx</strong> and <strong>STM32U5G9xx</strong> devices</p>
<h2 id="contents-1">Contents</h2>
<h3 id="cmsis-drivers-updates"><strong>CMSIS Drivers</strong> updates</h3>
<ul>
<li>CMSIS Device Maintenance Release version of bits and registers definition aligned with <strong>RM0456</strong> (STM32U5 reference manual) (Please Refer to the <a href="Drivers/CMSIS/Device/ST/STM32U5xx/Release_Notes.html"><strong>release notes</strong></a> for details)</li>
<li>Add Bits definition for RNG_NSCR register for RNG noise source control</li>
<li>Rename RTC_CR_ALRAOCLR to RTC_CR_ALRAFCLR definition</li>
<li>Rename RTC_CR_ALRBOCLR to RTC_CR_ALRBFCLR definition</li>
<li>Remove SYSCFG_UCPD_CC1ENRXFILTER and SYSCFG_UCPD_CC2ENRXFILTER defines</li>
<li>Remove COMP2 dependency in “stm32u545xx.h” and “stm32u545xx.h” files by removing TIM1_AF1_BKCMP2E, TIM1_AF1_BKCMP2P, TIM1_AF2_BK2CMP2E and TIM1_AF2_BK2CMP2P defines</li>
<li>Remove PWR_PDCRI register in “stm32u545xx.h” and “stm32u545xx.h” files by removing PWR_PDCRI_PD0, PWR_PDCRI_PD1, PWR_PDCRI_PD2, PWR_PDCRI_PD3, PWR_PDCRI_PD4, PWR_PDCRI_PD5, PWR_PDCRI_PD6 and PWR_PDCRI_PD0 defines</li>
<li>Update <strong>partition_stm32u5XXxx.h</strong> files headers</li>
<li>Fix wrong declaration of g_pfnVectors size in GCC <strong>startup_stm32u5XXxx.s</strong> files</li>
<li>Update linker files to properly mark sections readonly for GCC</li>
</ul>
<h3 id="halll-drivers-updates-1"><strong>HAL/LL Drivers</strong> updates</h3>
<ul>
<li>HAL and LL drivers Maintenance Release for STM32U5XX devices (Please Refer to the <a href="Drivers/STM32U5xx_HAL_Driver/Release_Notes.html"><strong>release notes</strong></a> for details)</li>
<li>Add the <strong>HAL MMC</strong> replay protected memory block management feature</li>
<li>The HAL and LL drivers provided within this package are <strong>MISRA-C, Coverity</strong> and <strong>MCU ASTYLE compliant</strong>, and have been reviewed with a static analysis tool to eliminate possible run-time errors</li>
</ul>
<h3 id="hal-drivers-updates"><strong>HAL Drivers</strong> updates</h3>
<ul>
<li><strong>HAL CORDIC</strong> driver
<ul>
<li>Fix incorrect word ‘surcharged’ in functions headers</li>
</ul></li>
<li><strong>HAL CORTEX</strong> driver
<ul>
<li>Fix MPU_ACCESS_OUTER_SHAREABLE and LL_MPU_ACCESS_OUTER_SHAREABLE definitions</li>
<li>Add HAL_SYSTICK_GetCLKSourceConfig, HAL_MPU_EnableRegion, HAL_MPU_DisableRegion, HAL_MPU_EnableRegion_NS and HAL_MPU_DisableRegion_NS functions</li>
</ul></li>
<li><strong>HAL FMAC</strong> driver
<ul>
<li>Fix incorrect word ‘surcharged’ in functions headers</li>
</ul></li>
<li><strong>HAL DSI</strong> driver
<ul>
<li>Align DSI Initialization sequence to the recommended ‘Programming procedure overview’ part to avoid DSI read LCD controller register 0x0A error</li>
</ul></li>
<li><strong>HAL GPIO</strong> driver
<ul>
<li>Remove IS_GPIO_SINGLE_PIN define</li>
</ul></li>
<li><strong>HAL ICACHE</strong> driver
<ul>
<li>Update HAL_ICACHE_DeInit to set registers to reset value</li>
<li>Update HAL_ICACHE_Invalidate() to prevent launching an invalidation if one has already been launched</li>
</ul></li>
<li><strong>HAL I2C</strong> driver
<ul>
<li>Update HAL_I2C_Mem_Write_IT API to initialize XferSize at 0</li>
<li>Update I2C_Slave_ISR_IT, I2C_Slave_ISR_DMA and I2C_ITSlaveCplt to prevent the call of HAL_I2C_ListenCpltCallback twice</li>
<li>Update I2C_WaitOnRXNEFlagUntilTimeout to check I2C_FLAG_AF independently from I2C_FLAG_RXNE</li>
<li>Remove the unusable code in HAL_I2C_IsDeviceReady function</li>
<li>Update HAL_I2C_Slave_Transmit to check if the received NACK is the good one</li>
</ul></li>
<li><strong>HAL </strong> driver
<ul>
<li>Add HAL_SYSCFG_EnableIOAnalogSwitchVoltageSelection and HAL_SYSCFG_DisableIOAnalogSwitchVoltageSelection functions</li>
</ul></li>
<li><strong>HAL LPTIM</strong> driver
<ul>
<li>Removed references to COMP2 for STM32U535xx/STM32U545xx devices</li>
<li>Remove IS_LPTIM_AUTORELOAD define</li>
</ul></li>
<li><strong>HAL MMC</strong> driver
<ul>
<li>Add the replay protected memory block management defines:
<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</li>
<li>HAL_MMC_RPMB_ProgramAuthenticationKey</li>
<li>HAL_MMC_RPMB_ProgramAuthenticationKey_IT</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</li>
<li>HAL_MMC_RPMB_ReadBlocks_IT</li>
<li>MMC_RPMB_KEYMAC_POSITION<br />
</li>
<li>MMC_RPMB_DATA_POSITION<br />
</li>
<li>MMC_RPMB_NONCE_POSITION<br />
</li>
<li>MMC_RPMB_WRITE_COUNTER_POSITION</li>
</ul></li>
<li>Add HAL_MMC_SwitchPartition and HAL_MMC_GetRPMBError functions</li>
<li>Add the MMC partitions type defines:
<ul>
<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</li>
</ul></li>
</ul></li>
<li><strong>HAL PKA</strong> driver
<ul>
<li>Add PKA_ECCMulExInTypeDef operation structure definition</li>
<li>Add HAL_PKA_ECCMulEx and HAL_PKA_ECCMulEx_IT functions</li>
</ul></li>
<li><strong>HAL PSSI</strong> driver
<ul>
<li>Replace hdmatx by hdmarx in HAL_PSSI_Receive_DMA() function</li>
</ul></li>
<li><strong>HAL PWR</strong> driver
<ul>
<li>Add PWR_SLEEPENTRY_WFE_NO_EVT_CLEAR and PWR_STOPENTRY_WFE_NO_EVT_CLEAR defines</li>
</ul></li>
<li><strong>HAL RCC</strong> driver
<ul>
<li>Update HAL_RCC_NMI_IRQHandler, clear flag before callback</li>
</ul></li>
<li><strong>HAL RNG</strong> driver
<ul>
<li>Add RNG noise source control</li>
</ul></li>
<li><strong>HAL SAI</strong> driver
<ul>
<li>Improve audio quality to avoid potential glitch</li>
<li>Fix incorrect word ‘surcharged’ in functions headers</li>
</ul></li>
<li><strong>HAL SMBUS</strong> driver
<ul>
<li>Remove HAL_SMBUS_STATE_TIMEOUT and HAL_SMBUS_STATE_ERROR defines</li>
</ul></li>
<li><strong>HAL TIM</strong> driver
<ul>
<li>Rename TIM_OCMODE_ASSYMETRIC_PWM1 to TIM_OCMODE_ASYMMETRIC_PWM1 define</li>
<li>Rename TIM_OCMODE_ASSYMETRIC_PWM2 to TIM_OCMODE_ASYMMETRIC_PWM2 define</li>
<li>Removed references to COMP2 for STM32U535xx/STM32U545xxxx devices</li>
</ul></li>
<li><strong>HAL UART</strong> driver
<ul>
<li>Fix incorrect gState check in HAL_UART_RegisterRxEventCallback and HAL_UART_UnRegisterRxEventCallback to allow user Rx Event Callback registration when a transmit is ongoing</li>
</ul></li>
<li><strong>HAL USB</strong> driver
<ul>
<li>Add HCD_PDWN_EXIT_CNT define</li>
</ul></li>
</ul>
<h3 id="ll-drivers-updates"><strong>LL Drivers</strong> updates</h3>
<ul>
<li><strong>LL CORTEX</strong> driver
<ul>
<li>Rename LL_SYSTICK_CLKSOURCE_HCLK_DIV8 to LL_SYSTICK_CLKSOURCE_EXTERNAL</li>
</ul></li>
<li><strong>LL I2C</strong> driver
<ul>
<li>Update LL_I2C_HandleTranfer function to prevent undefined behavior of volatile usage before updating the CR2 register</li>
</ul></li>
<li><strong>LL PWR</strong> driver
<ul>
<li>Rename PWR_SECCFGR_WUP8SEC to PWR_SECCFGR_LPMSEC define</li>
<li>Rename PWR_SECCFGR_WUP8SEC to PWR_SECCFGR_VDMSEC define</li>
<li>Rename PWR_SECCFGR_WUP8SEC to PWR_SECCFGR_VBSEC define</li>
<li>Rename PWR_SECCFGR_WUP8SEC to PWR_SECCFGR_APCSEC define</li>
</ul></li>
<li><strong>LL TIM</strong> driver
<ul>
<li>Rename LL_TIM_OCMODE_ASSYMETRIC_PWM1 to LL_TIM_OCMODE_ASYMMETRIC_PWM1 define</li>
<li>Rename LL_TIM_OCMODE_ASSYMETRIC_PWM2 to LL_TIM_OCMODE_ASYMMETRIC_PWM2 define</li>
</ul></li>
<li><strong>LL USB</strong> driver
<ul>
<li>Add HAL_USB_TIMEOUT and HAL_USB_CURRENT_MODE_MAX_DELAY_MS defines</li>
<li>Prevent masking NAK IT during start split transfer</li>
</ul></li>
<li><strong>LL UTILS</strong> driver
<ul>
<li>Add LL_UTILS_PACKAGETYPE_WLCSP72_SMPS and LL_UTILS_PACKAGETYPE_LQFP144_DSI_SMPS defines</li>
<li>Add LL_Init1msTick_HCLK_Div8, LL_Init1msTick_LSE and LL_Init1msTick_LSI functions</li>
<li>Rename LL_UTILS_PACKAGETYPE_WLCSP144 to LL_UTILS_PACKAGETYPE_UFBGA64 define</li>
<li>Rename LL_UTILS_PACKAGETYPE_UFBGA144 to LL_UTILS_PACKAGETYPE_UFBGA100 define</li>
<li>Rename LL_UTILS_PACKAGETYPE_WLCSP144_SMPS to LL_UTILS_PACKAGETYPE_LQFP100_DSI_SMPS define</li>
</ul></li>
</ul>
<h3 id="bsp-drivers-updates-1"><strong>BSP Drivers</strong> updates</h3>
<ul>
<li>Add PWM backlight control in <strong>stm32u5g9j_discovery_lcd</strong> drivers of STM32U5G9J-DK2 board</li>
<li>Set DSI default clock in <strong>stm32u5x9j_discovery_lcd</strong> driver of STM32U5x9J-DK board</li>
<li>Restore GPIO configuration for I2C after being previously initialized in <strong>stm32u5x9j_discovery_ranging_sensor</strong> driver of STM32U5x9J-DK board</li>
</ul>
<h3 id="projects-updates-1"><strong>Projects</strong> updates</h3>
<ul>
<li>Add <strong>ADC_ContinuousConversion_TriggerSW_LowPower_Init</strong> project on NUCLEO-U575ZI-Q board with <strong>EWARM</strong>, <strong>MDK-ARM</strong> and <strong>STM32CubeIDE</strong> toolchains support available under:
<ul>
<li>Projects\NUCLEO-U575ZI-Q\Examples_LL\ADC\ADC_ContinuousConversion_TriggerSW_LowPower_Init</li>
</ul></li>
</ul>
<h3 id="section-1"></h3>
<p>The <strong>STM32CubeU5</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"><strong>STM32CubeProjectsList.html</strong></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</td>
<td style="text-align: left;"><a href="Projects/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<p><strong>Notes:</strong></p>
<ul>
<li>The following sequence is needed to disable TrustZone:
<ul>
<li>Boot from user Flash memory:
<ul>
<li>Make sure that secure and non-secure applications are well loaded and executed (jump done on non-secure application)</li>
<li>If not yet done, set RDP to level 1 through STM32CubeProgrammer. Then only Hotplug connection is possible during non-secure application execution</li>
<li>Use a power supply different from ST-LINK in order to be able to connect to the target</li>
<li>Uncheck the TZEN box and set RDP to level 0 (option byte value 0xAA), then click on Apply</li>
</ul></li>
<li>Boot from RSS:
<ul>
<li>Make sure to apply a high level on BOOT0 pin (make sure that nSWBOOT0 Option Byte is checked)</li>
<li>If not yet done, set RDP to level 1 through STM32CubeProgrammer. Then only Hotplug connection is possible during non-secure application execution</li>
<li>Use a power supply different from ST-LINK in order to be able to connect to the target</li>
<li>Uncheck the TZEN box and set RDP to level 0 (option byte value 0xAA), then click on Apply Please refer to AN5347 for more details</li>
</ul></li>
</ul></li>
<li>The MicroLIB option should be enabled to display messages in HyperTerminal in the <strong>MDK-ARM</strong> projects. Detailed list is in the Project’s <a href="Projects/Release_Notes.html">release notes</a>.</li>
<li>The user should unplug then Plug STLINK connection on Slave Board to perform a power-on-reset when running I2C_WakeUpFromStop example on NUCLEO-U575ZI-Q board.</li>
</ul>
<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</td>
<td style="text-align: left;"><a href="Drivers/CMSIS/Documentation/General/html/index.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32U5xx CMSIS <span class="icon-st-update"></span></td>
<td style="text-align: left;">V1.4.0</td>
<td style="text-align: left;"><a href="Drivers/CMSIS/Device/ST/STM32U5xx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32U5xx HAL <span class="icon-st-update"></span></td>
<td style="text-align: left;">V1.5.0</td>
<td style="text-align: left;"><a href="Drivers/STM32U5xx_HAL_Driver/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32U5xx NUCLEO</td>
<td style="text-align: left;">V1.2.1</td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32U5xx_Nucleo/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32U575I-EV</td>
<td style="text-align: left;">V1.4.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32U575I-EV/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP B-U585I-IOT02A</td>
<td style="text-align: left;">V1.4.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/B-U585I-IOT02A/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32U5x9J-DK <span class="icon-st-update"></span></td>
<td style="text-align: left;">V1.3.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32U5x9J-DK/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32U5G9J-DK2 <span class="icon-st-update"></span></td>
<td style="text-align: left;">V1.2.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32U5G9J-DK2/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP aps512xx</td>
<td style="text-align: left;">V1.0.2</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/aps512xx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP aps6408</td>
<td style="text-align: left;">V1.0.2</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/aps6408/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="Drivers/BSP/Components/Common/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="Drivers/BSP/Components/cs42l51/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP gt911</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/gt911/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP hts221</td>
<td style="text-align: left;">V5.5.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/hts221/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP hx8347i</td>
<td style="text-align: left;">V2.0.3</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/hx8347i/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP iis2mdc</td>
<td style="text-align: left;">V1.3.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/iis2mdc/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.3.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/ism330dhcx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP lps22hh</td>
<td style="text-align: left;">V1.4.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/lps22hh/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP lsm6dso</td>
<td style="text-align: left;">V1.7.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/lsm6dso/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP m24256</td>
<td style="text-align: left;">V1.0.2</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/m24256/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP mfxstm32l152</td>
<td style="text-align: left;">V4.0.1</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/mfxstm32l152/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="Drivers/BSP/Components/mx_wifi/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP mx25lm51245g <span class="icon-st-update"></span></td>
<td style="text-align: left;">V2.0.9</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/mx25lm51245g/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP mx25um51245g <span class="icon-st-update"></span></td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/mx25um51245g/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP mx66uw1g45g</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/mx66uw1g45g/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP ov5640</td>
<td style="text-align: left;">V3.2.4</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/ov5640/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP rk050hr18</td>
<td style="text-align: left;">V1.0.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/rk050hr18/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP sitronix <span class="icon-st-update"></span></td>
<td style="text-align: left;">V1.0.3</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/sitronix/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP stm32wb_at</td>
<td style="text-align: left;">V1.0.12</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/stm32wb_at/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP stts22h</td>