-
Notifications
You must be signed in to change notification settings - Fork 103
/
Release_Notes.html
3851 lines (3851 loc) · 157 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 STM32CubeG4 Firmware Package</title>
<style>
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%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</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-stm32cubeg4-firmware-package">Release Notes for <mark> STM32CubeG4 Firmware Package </mark></h1>
<p>Copyright © 2019 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>STM32G4 series will serve all applications where <strong>advanced and/or rich analog</strong> peripheral set is required :</p>
<ul>
<li><p>ADC with HW oversampling (16-bit resolution, Offset & Gain compensation)</p></li>
<li><p>High Resolution Timer</p></li>
<li><p>Enhanced Timer functions (encoder modes)</p></li>
<li><p>Mathematical accelerator (Trigonometric and Filtering functions)</p></li>
<li><p>USB typeC, with Power Delivery</p></li>
</ul>
<p><strong>STM32Cube is an STMicroelectronics original initiative to ease developers life by reducing development efforts, time and cost.</mark></strong></p>
<p>STM32Cube covers STM32 portfolio.</p>
<p>STM32Cube Version 1.x includes:</p>
<ul>
<li>The STM32CubeMX, a graphical software configuration tool that allows to generate C initialization code using graphical wizards.</li>
<li>A comprehensive embedded software platform, delivered per series (such as <a href="https://www.st.com/en/product/stm32cubeg4">STM32CubeG4</a> for STM32G4 series)
<ul>
<li>The STM32Cube HAL, an STM32 abstraction layer embedded software, ensuring maximized portability across STM32 portfolio.</li>
<li>Low-layer APIs (LL) offering a fast light-weight expert-oriented layer which is closer to the hardware than the HAL.</li>
<li>A consistent set of middleware components such as USB Device, USB Power Delivery, FAT file system and RTOS.</li>
<li>All embedded software utilities, delivered with a full set of examples.</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>
<figure>
<img src="_htmresc/STM32Cube.bmp" alt="STM32Cube" /><figcaption aria-hidden="true">STM32Cube</figcaption>
</figure>
<p>The HAL (Hardware Abstraction Layer) and LL (Low Layers) drivers provided within this package support the <strong>STM32G431xx/41xx</strong>, <strong>STM32G471xx</strong>, <strong>STM32G473xx/83xx</strong> and <strong>STM32G474xx/84xx</strong> lines.</p>
<p>The HAL and LL drivers provided within this package are compliant with MISRA-C®:2012 guidelines, and have been reviewed with a static analysis tool to eliminate possible run-time errors. Reports are available on demand.</p>
<p>For <strong>quick getting started with the STM32CubeG4 firmware package</strong>, refer to <a href="Documentation/STM32CubeG4GettingStarted.pdf">UM2492</a> and you can download firmware updates and all the latest documentation from <a href="http://www.st.com/stm32cubefw">www.st.com/stm32cubefw</a></p>
<p>Here is the list of references to user documents:</p>
<ul>
<li><a href="https://www.st.com/resource/en/user_manual/DM00550255.pdf">UM2492</a> : Getting started with STM32CubeG4 firmware package for STM32G4xx series</li>
<li><a href="https://www.st.com/resource/en/user_manual/DM00610707.pdf">UM2570</a> : Description of STM32G4 HAL and LL Drivers</li>
<li><a href="https://www.st.com/resource/en/user_manual/DM00611131.pdf">UM2573</a> : STM32CubeG4 Nucleo demonstration firmware</li>
<li><a href="https://www.st.com/resource/en/user_manual/DM00617561.pdf">UM2583</a> : STM32CubeG4 STM32G474E-EVAL demonstration software</li>
<li><a href="https://www.st.com/resource/en/user_manual/DM00105259.pdf">UM1721</a> : Developing Applications on STM32Cube with FatFs.</li>
<li><a href="https://www.st.com/resource/en/user_manual/DM00105262.pdf">UM1722</a> : Developing Applications on STM32Cube with RTOS.</li>
<li><a href="https://www.st.com/resource/en/user_manual/DM00298101.pdf">UM2552</a> : STM32Cube USBPD stack User Manual</li>
</ul>
</div>
<section id="update-history" class="col-sm-12 col-lg-8">
<h1>Update History</h1>
<div class="collapse">
<input type="checkbox" id="collapse-section11" checked aria-hidden="true"> <label for="collapse-section11" aria-hidden="true">V1.6.1 / 25-September-2024 </label>
<div>
<h2 id="main-changes">Main Changes</h2>
<h3 id="maintenance-release">Maintenance release</h3>
<ul>
<li><p>General updates to fix known defects and enhancements implementation.</p></li>
<li><p><strong>CMSIS</strong> updates</p>
<ul>
<li>Align TAMP_CR2_TAMPxMSK CMSIS bit defintion with the reference manual.</li>
</ul></li>
<li><p><strong>HAL/LL Drivers</strong> updates</p>
<ul>
<li><p>General updates to fix known defects and enhancements implementation.</p></li>
<li><p><strong>HAL DAC</strong> update</p>
<ul>
<li>Improve management of connection selection vs buffer mode (add assert parameter check and comments).</li>
</ul></li>
<li><p><strong>HAL FMAC</strong> update</p>
<ul>
<li>Abort DMAIn/DMAOut in HAL_FMAC_FilterStop() API.</li>
</ul></li>
<li><p><strong>HAL I2S</strong> update</p>
<ul>
<li>Update HAL I2S driver to remove ‘go to’ instruction.</li>
</ul></li>
<li><p><strong>HAL SPI</strong> update</p>
<ul>
<li>Check data size before changing state in reception API.</li>
</ul></li>
<li><p><strong>HAL UART</strong> update</p>
<ul>
<li>Correct DMA Rx abort procedure impact on ongoing Tx transfer in polling mode.</li>
</ul></li>
<li><p><strong>HAL USART</strong> update</p>
<ul>
<li>Improve the visibility of the SPI mode support in HAL USART description.</li>
</ul></li>
<li><p><strong>HAL USB</strong> update</p>
<ul>
<li>Fix added to support bulk transfer in double buffer mode.</li>
</ul></li>
<li><p><strong>LL UCPD</strong> update</p>
<ul>
<li>Add LL UCPD API LL_UCPD_IsActiveFlag_RxErr().</li>
<li>Correct wording in some LL API LL_UCPD_IsActiveFlag_xxx() function descriptions.</li>
</ul></li>
</ul></li>
<li><p><strong>Projects</strong> updates</p>
<ul>
<li>Add restriction on how to use the FMAC_IIR_ITToPolling example in debug mode.</li>
<li>Update HAL I2C examples to use HAL_I2CEx_EnableFastModePlus() API to enable the fast mode plus.</li>
</ul></li>
<li><p>For the complete list of changes, please refer to the release notes of each firmware component</p></li>
</ul>
<h2 id="contents">Contents</h2>
<h3 id="projects">Projects</h3>
<p>The STM32CubeG4 Firmware package comes with a rich set of examples running on STMicroelectronics boards, organized by board and provided with preconfigured projects for the main supported toolchains.</p>
<p>The exhaustive list of projects is provided in this table (<a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>).</p>
<table>
<caption>Projects :</caption>
<thead>
<tr class="header">
<th>Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release notes</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Projects</td>
<td style="text-align: left;">See Projects Release note for details</td>
<td style="text-align: left;"><a href="Projects/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h3 id="components">Components</h3>
<table>
<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;"><strong>STM32G4xx CMSIS Device</strong></td>
<td style="text-align: left;"><strong>V1.2.5</strong></td>
<td style="text-align: left;"><a href="Drivers/CMSIS/Device/ST/STM32G4xx/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>STM32G4xx HAL Drivers</strong></td>
<td style="text-align: left;"><strong>V1.2.5</strong></td>
<td style="text-align: left;"><a href="Drivers/STM32G4xx_HAL_Driver/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<p>Note: in the tables above, version <strong>highlighted</strong> have changed since previous release.</p>
<h2 id="known-limitations">Known Limitations</h2>
<ul>
<li>The following STM32CubeIDE project include only Debug configuration :
<ul>
<li>STM32G474E-EVAL/Demonstrations/Demo</li>
</ul></li>
</ul>
<h2 id="development-toolchains-and-compilers">Development Toolchains and Compilers</h2>
<table style="width:99%;">
<caption>Development Toolchains :</caption>
<colgroup>
<col style="width: 91%" />
<col style="width: 7%" />
</colgroup>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: center;">Version</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">IAR Embedded Workbench for ARM (EWARM) toolchain + ST-LINKV2</td>
<td style="text-align: center;"><strong>V8.50.9</strong></td>
</tr>
<tr class="even">
<td style="text-align: left;">RealView Microcontroller Development Kit (MDK-ARM) toolchain + ST-LINKV2 - Only template projects are migrated to Arm Compiler 6 with MDK-ARM 5.31 (“AC-like Warnings” mode).</td>
<td style="text-align: center;"><strong>V5.38</strong></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32CubeIDE toolchain</td>
<td style="text-align: center;"><strong>V1.14.0</strong></td>
</tr>
</tbody>
</table>
<h2 id="supported-devices-and-boards">Supported Devices and boards</h2>
<table>
<caption>Supported Devices :</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32G431xx, STM32G441xx</td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32G471xx</td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32G473xx, STM32G483xx</td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32G474xx, STM32G484xx</td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32G491xx, STM32G4A1xx</td>
</tr>
</tbody>
</table>
<table>
<caption>Supported Boards :</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Reference</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">NUCLEO-G431KB Nucleo32 kit</td>
<td style="text-align: left;">MB1430 A-01</td>
</tr>
<tr class="even">
<td style="text-align: left;">NUCLEO-G431RB Nucleo kit</td>
<td style="text-align: left;">MB1367 C-01</td>
</tr>
<tr class="odd">
<td style="text-align: left;">NUCLEO-G474RE Nucleo kit</td>
<td style="text-align: left;">MB1367 C-01</td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32G474E-EVAL Evaluation Board</td>
<td style="text-align: left;">MB1397 B-01</td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32G474E-EVAL1 Evaluation Board</td>
<td style="text-align: left;">MB1397 B-05</td>
</tr>
<tr class="even">
<td style="text-align: left;">B-G474E-DPOW1 Discovery Kit</td>
<td style="text-align: left;">MB1428 B-01</td>
</tr>
<tr class="odd">
<td style="text-align: left;">NUCLEO-G491RE Nucleo kit</td>
<td style="text-align: left;">MB1367-G491RE C-04</td>
</tr>
</tbody>
</table>
<h2 id="backward-compatibility">Backward Compatibility</h2>
<p>None</p>
<h2 id="dependencies">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li>STM32CubeMX V6.10.0</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section10" aria-hidden="true"> <label for="collapse-section10" aria-hidden="true">V1.6.0 / 05-June-2024 </label>
<div>
<h2 id="main-changes-1">Main Changes</h2>
<h3 id="maintenance-release-1">Maintenance release</h3>
<ul>
<li>General updates to fix known defects and enhancements implementation.</li>
<li>General fixes to support GCC11 and GCC12 in all STM32CubeIDE projects.</li>
<li>Fix printf() API implementation to be compliant with IAR 9.x.</li>
<li>Upgrade USBPD devices library to use <strong>g4_v5.3.1</strong>.</li>
<li>Support of the STM32G474E-EVAL<strong>1</strong> board
<ul>
<li>Add 64 projects running on STM32G474E-EVAL1 board.</li>
<li>Same BSP drivers available for STM32G474E-EVAL board.</li>
</ul></li>
<li><strong>CMSIS</strong> updates
<ul>
<li>Update STM32G483xx MDKARM startup file to add missing FDCAN1 IRQ handler in vector table.</li>
</ul></li>
<li><strong>HAL/LL Drivers</strong> updates
<ul>
<li><p>General updates to fix known defects and enhancements implementation.</p></li>
<li><p><strong>HAL DAC</strong> update</p>
<ul>
<li>Update HAL_DACEx_SelfCalibrate() API to manage case of calibration factor equal to range maximum value.</li>
</ul></li>
<li><p><strong>HAL CORTEX</strong> update</p>
<ul>
<li>Update HAL_MPU_ConfigRegion() API to allow the configuration of the MPU registers independently of the value of Enable/Disable field.</li>
<li>Add new HAL_MPU_EnableRegion() / HAL_MPU_DisableRegion() APIs.</li>
</ul></li>
<li><p><strong>HAL QSPI</strong> update</p>
<ul>
<li>Clear AR register after CCR to avoid new transfer when address is not needed.</li>
</ul></li>
<li><p><strong>HAL I2C</strong> update</p>
<ul>
<li>Code quality enhancement MISRA-C 2012 Rule-13.5 within the HAL_I2C_Master_Abort_IT() API:
<ul>
<li>Add a temporary variable to get the value to check before comparison.</li>
</ul></li>
<li>Add abort memory management to HAL_I2C_Master_Abort_IT() API.</li>
<li>Move the prefetch process in HAL_I2C_Slave_Transmit() API.</li>
</ul></li>
<li><p><strong>HAL SPI</strong> update</p>
<ul>
<li>HAL code quality enhancement for MISRA-C Rule-8.13 by adding const qualifiers..</li>
</ul></li>
<li><p><strong>HAL/LL TIM</strong> update</p>
<ul>
<li>Fixed typo in PWM asymmetric mode related constants.</li>
</ul></li>
<li><p><strong>HAL UART</strong> update</p>
<ul>
<li>Add HAL_UART_RXEVENT_IDLE event notification to user in case of HAL_UARTEx_ReceiveToIdle_DMA() use with Circular DMA, even if occurring just after TC event.</li>
<li>Align prescaler value used by default in UART_GET_DIV_FACTOR macro with RM.</li>
<li>Correct wrong comment in HAL_UARTEx_DisableFifoMode() API.</li>
<li>Ensure UART Rx buffer is not written beyond boundaries in case of RX FIFO reception in Interrupt mode.</li>
</ul></li>
<li><p><strong>HAL USART</strong> update</p>
<ul>
<li>Align prescaler value used by default in USART_GET_DIV_FACTOR macro with RM.</li>
<li>Correct wrong comment in HAL_USARTEx_DisableFifoMode() API.</li>
<li>Improve the visibility of the SPI mode support in HAL USART description.</li>
</ul></li>
<li><p><strong>HAL CRYP</strong> update</p>
<ul>
<li>Code quality enhancement MISRA-C 2012 Rule-10.4 within HAL_CRYP_IRQHandler() API.</li>
</ul></li>
<li><p><strong>HAL FDCAN</strong> update</p>
<ul>
<li>HAL code quality enhancement for MISRA-C Rule-8.13 by adding const qualifiers.</li>
</ul></li>
<li><p><strong>LL BUS</strong> update</p>
<ul>
<li>Update macro definition LL_AHB2_GRP1_PERIPH_CCM.</li>
</ul></li>
<li><p><strong>LL LPUART</strong> update</p>
<ul>
<li>Add LL_LPUART_RequestTxDataFlush() API allowing TX FIFO flush request.</li>
</ul></li>
<li><p><strong>LL UCPD</strong> update</p>
<ul>
<li>HAL code quality enhancement for MISRA-C Rule-8.13 by adding const qualifiers.</li>
<li>Fix typo in Doxygen sections.</li>
</ul></li>
</ul></li>
<li><strong>BSP Drivers</strong> updates
<ul>
<li>STM32G4xx_Nucleo/ STM32G474E-EVAL/ B-G474E-DPOW1:
<ul>
<li>Fix printf() API implementation to be compliant with IAR 9.x.</li>
</ul></li>
</ul></li>
<li><strong>Middleware</strong>
<ul>
<li>Upgrade <strong>USB Power Delivery Device </strong> Library to use <strong>g4_v5.3.1</strong>.</li>
</ul></li>
<li><strong>Projects</strong>
<ul>
<li>Add new projects for STM32G474E-EVAL1 board (64 in total)</li>
<li>Fix printf() API implementation to be compliant with IAR 9.x.</li>
</ul></li>
<li><strong>Utilities</strong> updates
<ul>
<li>Upgrade EWARM and MDK-ARM patches to support new STM32G4 part numbers.</li>
</ul></li>
<li>For the complete list of changes, please refer to the release notes of each firmware component</li>
</ul>
<h2 id="contents-1">Contents</h2>
<h3 id="projects-1">Projects</h3>
<p>The STM32CubeG4 Firmware package comes with a rich set of examples running on STMicroelectronics boards, organized by board and provided with preconfigured projects for the main supported toolchains.</p>
<p>The exhaustive list of projects is provided in this table (<a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>).</p>
<table>
<caption>Projects :</caption>
<thead>
<tr class="header">
<th>Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release notes</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Projects</td>
<td style="text-align: left;">See Projects Release note for details</td>
<td style="text-align: left;"><a href="Projects/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h3 id="components-1">Components</h3>
<table>
<caption>Released Drivers components :</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.6.0_cm4</td>
<td style="text-align: left;"><a href="Drivers/CMSIS/README.md">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>STM32G4xx CMSIS Device</strong></td>
<td style="text-align: left;"><strong>V1.2.4</strong></td>
<td style="text-align: left;"><a href="Drivers/CMSIS/Device/ST/STM32G4xx/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>STM32G4xx HAL Drivers</strong></td>
<td style="text-align: left;"><strong>V1.2.4</strong></td>
<td style="text-align: left;"><a href="Drivers/STM32G4xx_HAL_Driver/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP STM32G4xx_Nucleo</strong></td>
<td style="text-align: left;"><strong>V1.0.5</strong></td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32G4xx_Nucleo/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP STM32G474E-EVAL</strong></td>
<td style="text-align: left;"><strong>V1.1.6</strong></td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32G474E-EVAL/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP B-G474E-DPOW1</strong></td>
<td style="text-align: left;"><strong>V1.1.5</strong></td>
<td style="text-align: left;"><a href="Drivers/BSP/B-G474E-DPOW1/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Adafruit Shield (reference ID 802)</td>
<td style="text-align: left;">V5.0.1</td>
<td style="text-align: left;"><a href="Drivers/BSP/Adafruit_Shield/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Common</td>
<td style="text-align: left;">V7.0.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/Common/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP hx8347d</td>
<td style="text-align: left;">V2.0.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/hx8347d/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP mfxstm32l152</td>
<td style="text-align: left;">V3.0.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/mfxstm32l152/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP mt25ql512abb</td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/mt25ql512abb/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP st7735</td>
<td style="text-align: left;">V2.0.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/st7735/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP stts751</td>
<td style="text-align: left;">V1.0.2</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/stts751/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP wm8994</td>
<td style="text-align: left;">V3.0.0</td>
<td style="text-align: left;"><a href="Drivers/BSP/Components/wm8994/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Released Middlewares components :</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 USB Device Library</td>
<td style="text-align: left;">V2.7.1</td>
<td style="text-align: left;"><a href="Middlewares/ST/STM32_USB_Device_Library/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32 USB Power Delivery Core Library</td>
<td style="text-align: left;">v4.3.1</td>
<td style="text-align: left;"><a href="Middlewares/ST/STM32_USBPD_Library/Core/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>STM32 USB Power Delivery Device Library</strong></td>
<td style="text-align: left;"><strong>g4_v5.3.1</strong></td>
<td style="text-align: left;"><a href="Middlewares/ST/STM32_USBPD_Library/Devices/STM32G4XX/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">FatFS</td>
<td style="text-align: left;">R0.12c</td>
<td style="text-align: left;"><a href="Middlewares/Third_Party/FatFs/doc/updates.txt">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20191011</td>
<td style="text-align: left;"><a href="Middlewares/Third_Party/FatFs/src/st_readme.txt">release note ST</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">FreeRTOS</td>
<td style="text-align: left;">V10.3.1</td>
<td style="text-align: left;"><a href="Middlewares/Third_Party/FreeRTOS/Source/readme.txt">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20200831</td>
<td style="text-align: left;"><a href="Middlewares/Third_Party/FreeRTOS/Source/st_readme.txt">release note ST</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32 OpenBootLoader</td>
<td style="text-align: left;">V3.0.1</td>
<td style="text-align: left;"><a href="Middlewares/ST/OpenBootloader/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<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 note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">LCD</td>
<td style="text-align: left;">V2.0.0</td>
<td style="text-align: left;"><a href="Utilities/LCD/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Fonts</td>
<td style="text-align: left;">V2.0.2</td>
<td style="text-align: left;"><a href="Utilities/Fonts/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">GUI Interface</td>
<td style="text-align: left;">GUI_V1.13.0</td>
<td style="text-align: left;"><a href="Utilities/GUI_INTERFACE/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Tracer Emb</td>
<td style="text-align: left;">V1.6.0</td>
<td style="text-align: left;"><a href="Utilities/TRACER_EMB/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<p>Note: in the tables above, version <strong>highlighted</strong> have changed since previous release.</p>
<h2 id="known-limitations-1">Known Limitations</h2>
<ul>
<li>The following STM32CubeIDE project include only Debug configuration :
<ul>
<li>STM32G474E-EVAL/Demonstrations/Demo</li>
</ul></li>
</ul>
<h2 id="development-toolchains-and-compilers-1">Development Toolchains and Compilers</h2>
<table style="width:99%;">
<caption>Development Toolchains :</caption>
<colgroup>
<col style="width: 91%" />
<col style="width: 7%" />
</colgroup>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: center;">Version</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">IAR Embedded Workbench for ARM (EWARM) toolchain + ST-LINKV2</td>
<td style="text-align: center;"><strong>V8.50.9</strong></td>
</tr>
<tr class="even">
<td style="text-align: left;">RealView Microcontroller Development Kit (MDK-ARM) toolchain + ST-LINKV2 - Only template projects are migrated to Arm Compiler 6 with MDK-ARM 5.31 (“AC-like Warnings” mode).</td>
<td style="text-align: center;"><strong>V5.38</strong></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32CubeIDE toolchain</td>
<td style="text-align: center;"><strong>V1.14.0</strong></td>
</tr>
</tbody>
</table>
<h2 id="supported-devices-and-boards-1">Supported Devices and boards</h2>
<table>
<caption>Supported Devices :</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32G431xx, STM32G441xx</td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32G471xx</td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32G473xx, STM32G483xx</td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32G474xx, STM32G484xx</td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32G491xx, STM32G4A1xx</td>
</tr>
</tbody>
</table>
<table>
<caption>Supported Boards :</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Reference</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">NUCLEO-G431KB Nucleo32 kit</td>
<td style="text-align: left;">MB1430 A-01</td>
</tr>
<tr class="even">
<td style="text-align: left;">NUCLEO-G431RB Nucleo kit</td>
<td style="text-align: left;">MB1367 C-01</td>
</tr>
<tr class="odd">
<td style="text-align: left;">NUCLEO-G474RE Nucleo kit</td>
<td style="text-align: left;">MB1367 C-01</td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32G474E-EVAL Evaluation Board</td>
<td style="text-align: left;">MB1397 B-01</td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32G474E-EVAL1 Evaluation Board</td>
<td style="text-align: left;">MB1397 B-05</td>
</tr>
<tr class="even">
<td style="text-align: left;">B-G474E-DPOW1 Discovery Kit</td>
<td style="text-align: left;">MB1428 B-01</td>
</tr>
<tr class="odd">
<td style="text-align: left;">NUCLEO-G491RE Nucleo kit</td>
<td style="text-align: left;">MB1367-G491RE C-04</td>
</tr>
</tbody>
</table>
<h2 id="backward-compatibility-1">Backward Compatibility</h2>
<p>None</p>
<h2 id="dependencies-1">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li>STM32CubeMX V6.10.0</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section9" aria-hidden="true"> <label for="collapse-section9" aria-hidden="true">V1.5.2 / 15-November-2023 </label>
<div>
<h2 id="main-changes-2">Main Changes</h2>
<ul>
<li>General updates to fix known defects and enhancements implementation.</li>
<li>Update sysmem.c and syscall.c files in all STM32CubeIDE projects to support GCC11.</li>
<li>Upgrade USBPD Core library to use V4.3.1.</li>
<li>Upgrade USBPD devices library to use V5.3.0.</li>
</ul>
<h2 id="patch-release">Patch release</h2>
<ul>
<li><strong>CMSIS</strong> updates
<ul>
<li>Fix misalignment between reference manual and CMSIS driver: remove GCR register.</li>
<li>Add missing __IRQn and __IRQHandler aliases, TIM7_DAC and COMP4_5_6 for STM32G491xx and STM32G4A1xx devices.</li>
<li>Update to call SystemInit first in startup/Reset_Handler, so GCC code is similar to IAR/Keil.</li>
<li>Change the value of RAM end region in stm32g491xx IAR linker files.</li>
<li>Fix the location of .size directive in STM32CubeIDE’s startup code to allow proper size information of vector table.</li>
</ul></li>
<li><strong>HAL/LL Drivers</strong> updates
<ul>
<li>HAL code quality enhancement for MISRA-C Rule-8.13 by adding const qualifiers.</li>
<li><strong>HAL Generic</strong> update
<ul>
<li>Add implementation of utility APIs HAL_GetUIDw0, HAL_GetUIDw1 and HAL_GetUIDw2.</li>
<li>Allow redefinition of macro UNUSED(x).</li>
<li>Update of HAL_GetTickFreq() brief.</li>
</ul></li>
<li><strong>HAL/LL ADC</strong> update
<ul>
<li>Add “ADC_CHANNEL_0” in IS_ADC_CHANNEL() macro.</li>
<li>Add helper macro to convert data from differential mode.</li>
<li>Remove useless action of conversion trigger change in function LL_ADC_DeInit(); Moreover; this action was not compliant with ADC enable state (cf reference manual).</li>
</ul></li>
<li><strong>HAL/LL TIM</strong> update
<ul>
<li>Manage configuration of the Capture/compare DMA request source:
<ul>
<li>Add related new exported constants (TIM_CCDMAREQUEST_CC, TIM_CCDMAREQUEST_UPDATE).</li>
<li>Create a new macro __HAL_TIM_SELECT_CCDMAREQUEST() allowing to program the TIMx_CR2.CCDS bitfield.</li>
</ul></li>
<li>Remove useless definition of macro IS_TIM_INTERNAL_TRIGGEREVENT_SELECTION.</li>
<li>Improve driver robustness against wrong period values.</li>
<li>Improve driver robustness against wrong DMA related parameters.</li>
<li>Improve period configuration parameter check.</li>
<li>Minor typo correction in hal_tim header file.</li>
<li>Update __LL_TIM_CALC_PSC() macro to round up the evaluated value when the fractional part of the division is greater than 0.5.</li>
<li>Remove useless check on IS_TIM_ADVANCED_INSTANCE() within LL_TIM_BDTR_Init() to fix Break Filter configuration problem with specific TIM instances.</li>
<li>Update LL_TIM_DisableBreakInputSource() and LL_TIM_SetBreakInputSourcePolarity() APIs description.</li>
<li>Remove lock management from callback management functions.</li>
<li>Remove multiple volatile reads or writes in interrupt handler for better performance.</li>
<li>Improve HAL TIM driver’s operational behavior.</li>
<li>Assert check for the right channels.</li>
<li>Fix typo in PWM symmetric mode related constants names.</li>
<li>Remove unnecessary change of MOE bitfield in LL_TIM_BDTR_Init().</li>
</ul></li>
<li><strong>HAL/LL LPTIM</strong> update
<ul>
<li>Improve LPTIM FSM management consistency.</li>
<li>Apply same naming rules to clear FLAG related functions.</li>
<li>Remove Lock management from callback management functions.</li>
<li>Remove redundant IS_LPTIM_AUTORELOAD macro.</li>
</ul></li>
<li><strong>HAL/LL RCC</strong> update
<ul>
<li>Add uint32_t cast to shift left operands constants defined with ‘U’ suffix in case MISRAC2012-Rule-12.2 violated.</li>
<li>Wait PLL1RDY to be off before clearing PLL1 source.</li>
<li>Set RCC_CRS_HSI48CALIBRATION_DEFAULT to 0x40 to be consistent with REFMAN and LL CRS driver.</li>
<li>Fix wrong RCC_APB1ENR1_WWDG2EN bit referenced in __HAL_RCC_WWDG_CLK_DISABLE() macro.</li>
<li>Modify the comment in PLL configuration.</li>
</ul></li>
<li><strong>HAL CORTEX</strong> update
<ul>
<li>Updated HAL_MPU_ConfigRegion() to allow the configuration of the MPU registers independently of the value of Enable/Disable field.</li>
<li>Add new APIs HAL_MPU_EnableRegion() / HAL_MPU_DisableRegion().</li>
</ul></li>
<li><strong>HAL DAC</strong> update
<ul>
<li>Fix incorrect word ‘surcharged’ in functions headers.</li>
<li>Updated DAC buffer calibration according to RM.</li>
<li>Fix HAL_GetTick() timeout vulnerability.</li>
</ul></li>
<li><strong>HAL EXTI</strong> update
<ul>
<li>Fix computation of pExtiConfig->GPIOSel in HAL_EXTI_GetConfigLine().</li>
<li>Fix the wrong references in the “How to use this driver” section.</li>
</ul></li>
<li><strong>HAL CORDIC</strong> update
<ul>
<li>Fix incorrect word ‘surcharged’ in functions headers.</li>
</ul></li>
<li><strong>HAL FMAC</strong> update
<ul>
<li>Avoid usage of magic numbers.</li>
<li>Fix incorrect word ‘surcharged’ in functions headers.</li>
</ul></li>
<li><strong>HAL/LL HRTIM</strong> update
<ul>
<li>Rework HAL_HRTIM_Get…() getter functions not to change the handle state in case input parameter is out-of-range.</li>
<li>Add a right shift of the read bit field in LL_HRTIM_FLT_GetResetMode() before returning the result.</li>
<li>Fix erroneous fault counter threshold configuration function.</li>
<li>Fix typo in LL_HRTIM_FLT_ResetCounter() API header.</li>
</ul></li>
<li><strong>HAL RTC</strong> update
<ul>
<li>Check if the RTC calendar has been previously initialized before entering Initialization mode.</li>
<li>Optimize the way RSF flag is cleared in HAL_RTC_WaitForSynchro().</li>
<li>Correct misleading note about shadow registers.</li>
</ul></li>
<li><strong>HAL FMC</strong> update
<ul>
<li>Fix Hardfault issues when executing NOR read operations caused by FMC_WRITE_OPERATION_DISABLE.</li>
</ul></li>
<li><strong>HAL CRYP</strong> update
<ul>
<li>Mask arrays are declared as static const.</li>
<li>Update Crypt/Decrypt IT processes to avoid Computation Completed IRQ fires before the DINR pointer increment.</li>
<li>Update AES GCM in interrupt mode to avoid Computation Completed IRQ fires before the DINR pointer increment.</li>
</ul></li>
<li><strong>HAL FLASH</strong> update
<ul>
<li>Update the hal_flash_ex.c file to correctly support the PB4_PUPEN Option.</li>
<li>Fix FLASH_PAGE_NB value for STM32G4 category 3 devices.</li>
</ul></li>
<li><strong>HAL CRC</strong> update
<ul>
<li>Add filter in HAL_CRCEx_Polynomial_Set() to exclude even polynomials.</li>
</ul></li>
<li><strong>HAL QSPI</strong> update
<ul>
<li>Update HAL_QSPI_Abort() and HAL_QSPI_Abort_IT() APIs to check on QSPI BUSY flag status before executing the abort procedure.</li>
<li>Fix incorrect word ‘surcharged’ in functions headers.</li>
</ul></li>
<li><strong>HAL SMBUS</strong> update
<ul>
<li>Remove Lock management from callback management functions.</li>
<li>Update HAL SMBUS driver to prefetch data before starting the transmission: implementation of errata sheet workaround I2C2-190208 : Transmission stalled after first byte.</li>
<li>Update SMBUS_ITErrorHandler to flash TXDR just in case of error.</li>
</ul></li>
<li><strong>HAL UART</strong> update
<ul>
<li>Add a new API HAL_UARTEx_GetRxEventType that could be used to retrieve the type of event that has led the RxEventCallback execution.</li>
<li>Remove of HAL_LOCK/HAL_UNLOCK calls in HAL UART Tx and Rx APIs.</li>
<li>Remove __HAL_LOCK() from HAL_xxx_RegisterCallback()/HAL_xxx_UnRegisterCallback().</li>
<li>Disable the Receiver Timeout Interrupt when data reception is completed.</li>
<li>Rework of UART_WaitOnFlagUntilTimeout() API to avoid being stuck forever when UART overrun error occurs and to enhance behavior.</li>
<li>Update initialisation sequence for TXINV, RXINV and TXRXSWAP settings.</li>
<li>Fix incorrect gState check in HAL_UART_RegisterRxEventCallback/HAL_UART_UnRegisterRxEventCallback to allow user Rx Event Callback registration when a transmit is ongoing.</li>
<li>Avoid RTOF flag to be cleared by a transmit process in polling mode.</li>
</ul></li>
<li><strong>HAL SMARTCARD</strong> update
<ul>
<li>Remove __HAL_LOCK() from HAL_xxx_RegisterCallback()/HAL_xxx_UnRegisterCallback().</li>
</ul></li>
<li><strong>HAL SPI</strong> update
<ul>
<li>Fix driver to don’t update state in case of error (HAL_SPI_STATE_READY will be set only in case of HAL_TIMEOUT).</li>
<li>Update HAL_SPI_TransmitReceive API to set the bit CRCNEXT in case of one byte transaction.</li>
<li>Update IT API to enable interrupts after process unlock.</li>
</ul></li>
<li><strong>HAL IRDA</strong> update
<ul>
<li>Remove __HAL_LOCK() from HAL_xxx_RegisterCallback()/HAL_xxx_UnRegisterCallback().</li>
</ul></li>
<li><strong>HAL FDCAN</strong> update
<ul>
<li>Refine description of IsFilterMatchingFrame and FilterIndex, members of structure FDCAN_RxHeaderTypeDef.</li>
<li>Fix GetIndex issue in HAL_FDCAN_GetRxMessage.</li>
<li>Modify misleading DataLength values.</li>
</ul></li>
<li><strong>HAL SAI</strong> update
<ul>
<li>Avoid using magic numbers.</li>
<li>Fix misalignment between reference manual and HAL SAI driver: remove GCR register.</li>
<li>Improve audio quality (avoid potential glitch).</li>
<li>Fix incorrect word ‘surcharged’.</li>
</ul></li>
<li><strong>HAL USART</strong> update
<ul>
<li>Remove __HAL_LOCK() from HAL_xxx_RegisterCallback()/HAL_xxx_UnRegisterCallback().</li>
</ul></li>
<li><strong>HAL/LL I2C</strong> update
<ul>
<li>Move polling code of HAL memory interface through interrupt management to prevent timeout issue using HAL MEM interface through FreeRTOS.</li>
<li>Update I2C_IsErrorOccurred to return error if timeout is detected.</li>
<li>Clear the ADDRF flag only when direction is confirmed as changed, to prevent that the ADDRF flag is cleared too early when the restart is received.</li>
<li>Remove Lock management from callback management functions.</li>
<li>Duplicate the test condition after timeout detection to avoid false timeout detection.</li>
<li>Update HAL_I2C_IsDeviceReady() API to support 10_bit addressing mode: Update done on the macro I2C_GENERATE_START.</li>
<li>Update HAL I2C driver to prefetch data before starting the transmission: implementation of errata sheet workaround I2C2-190208 : Transmission stalled after first byte.</li>
<li>Update HAL I2C driver to disable all interrupts after end of transaction.</li>
<li>Update HAL_I2C_Init API to clear ADD10 bit in 7 bit addressing mode.</li>
<li>Solve Slave No stretch not functional by using HAL Slave interface.</li>
<li>Update HAL_I2C_Mem_Write_IT API to initialize XferSize at 0.</li>
<li>Update I2C_Slave_ISR_IT, I2C_Slave_ISR_DMA and I2C_ITSlaveCplt 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 function HAL_I2C_IsDeviceReady.</li>
<li>Update I2C_WaitOnFlagUntilTimeout to handle error case.</li>
<li>Update HAL_I2C_Slave_Transmit to check if the received NACK is the good one.</li>
<li>Update LL_I2C_HandleTranfer function to prevent undefined behavior of volatile usage before updating the CR2 register.</li>
</ul></li>
<li><strong>LL UCPD</strong> update
<ul>
<li>Correct register accessed by LL_UCPD_ReadRxPaySize() function.</li>
</ul></li>
<li><strong>HAL USB</strong> update
<ul>
<li>Add new function HAL_PCD_EP_Abort() to abort current USB endpoint transfer.</li>
<li>PCD: add supporting multi packets transfer on Interrupt endpoint.</li>
<li>PCD: software correction added to avoid unexpected STALL condition during EP0 multi packet OUT transfer.</li>
<li>Set DCD timeout to a minimum of 300ms before starting BCD primary detection process.</li>
<li>hal_pcd.h: add a mask for USB RX bytes count.</li>
</ul></li>
<li><strong>LL UTILS</strong> update
<ul>
<li>Align UTILS_PLLVCO_INPUT_MAX value with documentation.</li>
<li>Update the number of LATENCY to be coherent with the reference manual.</li>
<li>Update package type definitions to be aligned with RM0440.</li>
<li>Fix a condition in LL_SetFlashLatency() API to avoid generation of Rule-10.1_R2 warning.</li>
<li>Add else statement in the end of LL_SetFlashLatency API to avoid Misra-C 2012 Rule-15.7 warnings.</li>
<li>Fix a note about Ticks parameter.</li>
</ul></li>
</ul></li>
<li><strong>Middlewares</strong>
<ul>
<li>Upgrade <strong>USB Power Delivery Core</strong> Library to use <strong>V4.3.1</strong>.</li>
<li>Upgrade <strong>USB Power Delivery Device </strong> Library to use <strong>V5.3.0</strong>.</li>
</ul></li>
<li><strong>Projects</strong> updates
<ul>
<li>Fix PWR_STANDBY_RTC examples in order to execute correctly entering/exiting Standby mode.</li>
<li>Update STM32CubeIDE projects to fix the location of .size directive in startup code to allow proper size information of vector table.</li>
<li>Update sysmem.c and syscall.c files in all STM32CubeIDE projects to support GCC11.</li>
<li>Update to fix STM32CubeIDE warning: Accessing 4 bytes in a region of size x [-Wstringop-overflow=] in CRC_Bytes_Stream_7bit_CRC examples.</li>
<li>Change the initialization of the Counter Mode from “LL_TIM_COUNTERMODE_CENTER_DOWN” to “LL_TIM_COUNTERMODE_CENTER_UP” While configuring the Timer 1 in PWM mode in TIM_BreakAndDeadtime_Init examples.</li>
<li><strong>NUCLEO-G474RE</strong>
<ul>
<li>Remove from ADC_GroupsRegularInjected_Init LL Example a useless double call to LL_TIM_SetTriggerOutput().</li>
</ul></li>
<li><strong>NUCLEO-G431RB and NUCLEO-G474RE</strong>
<ul>
<li>Update CRC LL examples to fix incorrect bytes stream handling.</li>
</ul></li>
<li><strong>NUCLEO-G491RE</strong>
<ul>
<li>Fix RAM size in .ld linker script files.</li>
</ul></li>
<li><strong>STM32G474E-EVAL</strong>
<ul>
<li>Correct USART3 baudrate value in STM32G474E-EVAL_T0_MFX example.</li>
<li>Update USBPD application readme : external PSU info missing.</li>
</ul></li>
</ul></li>
<li>For the complete list of changes, please refer to the release notes of each firmware component</li>
</ul>
<h2 id="contents-2">Contents</h2>
<h3 id="projects-2">Projects</h3>
<p>The STM32CubeG4 Firmware package comes with a rich set of examples running on STMicroelectronics boards, organized by board and provided with preconfigured projects for the main supported toolchains.</p>
<p>The exhaustive list of projects is provided in this table (<a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>).</p>
<table>
<caption>Projects :</caption>
<thead>
<tr class="header">
<th>Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release notes</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Projects</td>
<td style="text-align: left;">See Projects Release note for details</td>
<td style="text-align: left;"><a href="Projects/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h3 id="components-2">Components</h3>
<table>
<caption>Released Drivers components :</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.6.0_cm4</td>
<td style="text-align: left;"><a href="Drivers/CMSIS/README.md">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32G4xx CMSIS Device</td>
<td style="text-align: left;"><strong>V1.2.3</strong></td>
<td style="text-align: left;"><a href="Drivers/CMSIS/Device/ST/STM32G4xx/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32G4xx HAL Drivers</td>
<td style="text-align: left;"><strong>V1.2.3</strong></td>
<td style="text-align: left;"><a href="Drivers/STM32G4xx_HAL_Driver/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32G4xx_Nucleo</td>
<td style="text-align: left;">V1.0.4</td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32G4xx_Nucleo/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32G474E-EVAL</td>
<td style="text-align: left;">V1.1.5</td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32G474E-EVAL/Release_Notes.html">release note</a></td>
</tr>