forked from STMicroelectronics/STM32CubeG4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Release_Notes.html
2691 lines (2691 loc) · 110 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.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<div class="row">
<div class="col-sm-12 col-lg-4">
<div class="card fluid">
<div class="sectione dark">
<center>
<h1 id="release-notes-for-stm32cubeg4-firmware-package"><small>Release Notes for</small> STM32CubeG4 Firmware Package</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>
</div>
</div>
<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-section8" checked aria-hidden="true"> <label for="collapse-section8" aria-hidden="true">v1.5.1 / 17-June-2022 </label>
<div>
<h2 id="main-changes">Main Changes</h2>
<h3 id="patch-release">Patch release</h3>
<ul>
<li><p>Add and upgrade the Digital Power applications provided for the B-G474E-DPOW1 discovery kit, showcasing the control of Buck and Boost DC-DC converters</p>
<ul>
<li>Set projects operating Buck and Boost converters implementing the digital controller both on the FMAC IP or the CPU and driving the PWM switches via the high precision HRTIM1 timer.</li>
<li>Two types of digital controllers are proposed: frequency-designed IIR filters and time-designed Proportional-Integral compensators.</li>
<li>Mixed example showcasing the usage of HRTIM1 on STM32G4 to control a boost PFC plant in transition mode.</li>
</ul></li>
<li><p>For more details about the projects, please refer to the corresponding application notes available at <a href="https://www.st.com/content/st_com/en/ecosystems/stm32-digital-power.html">www.st.com/content/st_com/en/ecosystems/stm32-digital-power.html</a>.</p></li>
<li><p><strong>Projects</strong></p>
<ul>
<li>B-G474E-DPOW1:
<ul>
<li>Add new Digital Power and HRTIM applications:
<ul>
<li>Boost_VoltageMode_HW</li>
<li>Buck_CurrentMode_HW</li>
<li>Buck_CurrentMode_SW</li>
<li>Buck_VoltageMode_SW</li>
<li>HRTIM_PFC_TransitionMode</li>
</ul></li>
</ul></li>
</ul></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>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section7" aria-hidden="true"> <label for="collapse-section7" aria-hidden="true">V1.5.0 / 10-November-2021 </label>
<div>
<h2 id="main-changes-1">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>All source files: update disclaimer to add reference to the new license agreement.</p></li>
<li><p><strong>CMSIS</strong></p>
<ul>
<li>Added new atomic register access macros in stm32g4xx.h file.</li>
<li>Add LSI maximum startup time datasheet value: LSI_STARTUP_TIME.</li>
<li>Add reset enable bits definitions for slave timers other than timer A.</li>
<li>Fix Doxygen grouping issues.</li>
<li>Remove extra TIM5 references in the stm32g471xx.h CMSIS file and add support to the TIM20.</li>
</ul></li>
<li><p><strong>HAL</strong></p>
<ul>
<li>General updates to fix known defects and enhancements implementation.</li>
<li><strong>HAL/LL ADC</strong> update
<ul>
<li>Update HAL_ADC_Start_DMA() API to avoid return error when using Independent instance with multimode activated.</li>
<li>Update of the TEMPSENSOR_CAL2_TEMP value in the ll_adc.h file.</li>
<li>Update LL_ADC_SetChannelSingleDiff() API to be compliant with ARM CLang compiler v6.16.</li>
</ul></li>
<li><strong>HAL/LL RCC</strong> update
<ul>
<li>Add missing API IsEnabled for PLL "domain" output.</li>
<li>Enhance RCC_MCOx in order to support both MCO number (PA8 and PG10) and AF mapping.</li>
</ul></li>
<li><strong>HAL/LL USART</strong> update
<ul>
<li>Handling of UART concurrent register access in case of race condition between Tx and Rx transfers (HAL UART and LL LPUART)</li>
<li>Add const qualifier for read only pointers.</li>
<li>Improve header description of USART_WaitOnFlagUntilTimeout() function</li>
<li>Add a check on the USART parity before enabling the parity error interrupt.</li>
<li>Fix compilation warnings generated with ARMV6 compiler.</li>
</ul></li>
<li><strong>HAL/LL UART</strong> update
<ul>
<li>Fix erroneous UART’s handle state in case of error returned after DMA reception start within UART_Start_Receive_DMA().</li>
<li>Correction on UART ReceptionType management in case of ReceptionToIdle API are called from RxEvent callback</li>
<li>Handling of UART concurrent register access in case of race condition between Tx and Rx transfers (HAL UART and LL LPUART)</li>
<li>Improve header description of UART_WaitOnFlagUntilTimeout() function</li>
<li>Add a check on the UART parity before enabling the parity error interruption.</li>
<li>Add const qualifier for read only pointers.</li>
<li>Fix wrong cast when computing the USARTDIV value in UART_SetConfig().</li>
</ul></li>
<li><strong>LL LPTIM</strong> update
<ul>
<li>Add check on PRIMASK register to prevent from enabling unwanted global interrupts within LPTIM_Disable() and LL_LPTIM_Disable().</li>
</ul></li>
<li><strong>LL TIM</strong> update
<ul>
<li>Update LL_TIM_OC_SetPulseWidth implementation to properly align the PulseWidth input value with the TIM_ECR register.</li>
<li>Fix wrong compile switch used in TIM_LL_EC_DMABURST_BASEADDR constant definitions.</li>
</ul></li>
<li><strong>LL LPUART</strong> update
<ul>
<li>Remove useless TXFECF reference from LL LPUART driver.</li>
</ul></li>
<li><strong>HAL IRDA</strong> update
<ul>
<li>Improve header description of IRDA_WaitOnFlagUntilTimeout() function</li>
<li>Add a check on the IRDA parity before enabling the parity error interrupt.</li>
<li>Add const qualifier for read only pointers.</li>
<li>Fix wrong cast when computing the USARTDIV value in IRDA_SetConfig().</li>
</ul></li>
<li><strong>HAL SMARTCARD</strong> update
<ul>
<li>Improve header description of SMARTCARD_WaitOnFlagUntilTimeout() function.</li>
<li>Add const qualifier for read only pointers.</li>
<li>Fix wrong cast when computing the USARTDIV value in SMARTCARD_SetConfig().</li>
</ul></li>
<li><strong>HAL/LL SPI</strong> update
<ul>
<li>Updated to fix MISRA-C 2012 Rule-13.2.</li>
<li>Update LL_SPI_TransmitData8() API to avoid casting the result to 8 bits.</li>
</ul></li>
<li><strong>HAL RTC</strong> update
<ul>
<li>Update __HAL_RTC_…(<strong>HANDLE</strong>, …) macros to access registers through (<strong>HANDLE</strong>)->Instance pointer and avoid “unused variable” warnings.</li>
</ul></li>
<li><strong>HAL CRYP</strong> update
<ul>
<li>CRYP_AESCCM_Process_IT() update to manage header lengths in bytes or words when header length is less than 16 bytes.</li>
</ul></li>
<li><strong>HAL HRTIM</strong> update
<ul>
<li>Fix compilation ARMCLANG -Wparenteses-equality warnings.</li>
<li>Fix missing initial update when Resynchronized update is used.</li>
</ul></li>
<li><strong>HAL FLASH</strong> update
<ul>
<li>Update to support STM32G4 part numbers with 256K flash</li>
<li>Disable ICache while Flash programming.
<ul>
<li>Update HAL_FLASHEx_Erase() to remove __HAL_FLASH_INSTRUCTION_CACHE_DISABLE().</li>
</ul></li>
</ul></li>
<li><strong>HAL USB</strong> update
<ul>
<li>HAL PCD: add fix transfer complete for IN Interrupt transaction in single buffer mode</li>
</ul></li>
<li><strong>HAL GPIO</strong> update
<ul>
<li>Reorder EXTI configuration sequence in order to avoid unexpected level detection.</li>
<li>Optimize assertion control for GPIO Pull mode in HAL_GPIO_Init() API.</li>
<li>Update HAL_GPIO_Init() API to avoid the configuration of PUPDR register when Analog mode is selected.</li>
</ul></li>
<li><strong>HAL EXTI</strong> update
<ul>
<li>Update HAL_EXTI_GetConfigLine() API to set default configuration value of Trigger and GPIOSel before checking each corresponding registers.</li>
</ul></li>
<li><strong>HAL USART</strong> update
<ul>
<li>Improve header description of USART_WaitOnFlagUntilTimeout() function</li>
<li>Add a check on the USART parity before enabling the parity error interrupt.</li>
</ul></li>
<li><strong>HAL I2C</strong> update
<ul>
<li>Update I2C_IsAcknowledgeFailed() API to avoid I2C in busy state if NACK received after transmitting register address.</li>
<li>Update to handle errors in polling mode.
<ul>
<li>Rename I2C_IsAcknowledgeFailed() to I2C_IsErrorOccurred() and correctly manage when error occurs.</li>
</ul></li>
<li>Update to fix issue detected due to low system frequency execution (HSI).</li>
<li>Declare an internal macro link to DMA macro to check remaining data: I2C_GET_DMA_REMAIN_DATA.</li>
</ul></li>
<li><strong>HAL SMBUS</strong> update
<ul>
<li>Add the support of wake up capability.</li>
<li>Add new APIs:
<ul>
<li>HAL_SMBUSEx_EnableWakeUp()</li>
<li>HAL_SMBUSEx_DisableWakeUp()</li>
</ul></li>
<li>Update to fix issue of mismatched data received by master in case of data size to be transmitted by the slave is greater than the data size to be received by the master.
<ul>
<li>Add flush on TX register.</li>
</ul></li>
</ul></li>
<li><strong>HAL IWDG</strong> update
<ul>
<li>Add LSI startup time in default IWDG timeout calculation (HAL_IWDG_DEFAULT_TIMEOUT).</li>
</ul></li>
<li><strong>HAL RNG</strong> update
<ul>
<li>Update timeout mechanism to avoid false timeout detection in case of preemption.</li>
</ul></li>
<li><strong>HAL NAND</strong> update
<ul>
<li>Update implementation of “HAL_NAND_Write_Page_16b” and “HAL_NAND_Read_Page_16b” APIs implementation to fix an issue with the page calculation of 8 bits memories.</li>
</ul></li>
</ul></li>
<li><p><strong>BSP</strong></p>
<ul>
<li>Add License.md file required for GitHub publication</li>
</ul></li>
<li><p><strong>Projects</strong></p>
<ul>
<li>General updates to fix known defects and enhancements implementation.</li>
<li>STM32G474E-EVAL Demo
<ul>
<li>fix some warnings may appear while compiling the project if gcc 9 is used.</li>
</ul></li>
<li>OPAMP Projects
<ul>
<li>Update Readme file to fix wrong description of OPAMP non inverting input.</li>
</ul></li>
<li>UCPD Projects
<ul>
<li>Update to use TC flag instead of GI API for clearing TX DMA flag at the end of TX phase.</li>
</ul></li>
<li>HRTIM Projects
<ul>
<li>Update to fix dead-lock situation when Resynchronized update is used
<ul>
<li>Add LL_HRTIM_TIM_EnableResyncUpdate() initialization.</li>
</ul></li>
</ul></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-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">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 Core</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.2</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.2</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;"><strong>V1.0.4</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;">BSP STM32G474E-EVAL</td>
<td style="text-align: left;"><strong>V1.1.5</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;">BSP B-G474E-DPOW1</td>
<td style="text-align: left;"><strong>V1.1.4</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;">v3.3.0</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;">STM32 USB Power Delivery Device Library</td>
<td style="text-align: left;">g4_v5.0.0</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;">Basic GUI</td>
<td style="text-align: left;">V2.0.0</td>
<td style="text-align: left;"><a href="Utilities/Basic_GUI/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">Known Limitations</h2>
<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;">V8.50.4</td>
</tr>
<tr class="even">
<td style="text-align: left;">RealView Microcontroller Development Kit (MDK-ARM) toolchain + ST-LINKV2</td>
<td style="text-align: center;">V5.31</td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32CubeIDE toolchain (gcc9_2020_q2_update)</td>
<td style="text-align: center;"><strong>V1.7.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;">B-G474E-DPOW1 Discovery Kit</td>
<td style="text-align: left;">MB1428 B-01</td>
</tr>
<tr class="even">
<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.4.0</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section6" aria-hidden="true"> <label for="collapse-section6" aria-hidden="true">V1.4.0 / 27-January-2021 </label>
<div>
<h2 id="main-changes-2">Main Changes</h2>
<h3 id="maintenance-release-1">Maintenance release</h3>
<ul>
<li><p>General updates to fix known defects and enhancements implementation.</p></li>
<li><p>Added new <strong>HAL SMBUS extended driver</strong> to support SMBUS fast Mode Plus.</p></li>
<li><p>Added support of QUADSPI to STM32G471xx devices.</p></li>
<li><p>Upgraded FreeRTOS to use <strong>V10.3.1</strong> ST modified <strong>20200831</strong>.</p></li>
<li><p>Upgraded USB Device Lib to use <strong>V2.7.1</strong>.</p></li>
<li><p>Upgraded STM32 USB Power Delivery Core Library to use <strong>v3.3.0</strong>.</p></li>
<li><p>Upgraded STM32 USB Power Delivery Device Library to use <strong>g4_v5.0.0</strong>.</p></li>
<li><p>Upgraded STM32 OpenBootLoader to use <strong>v3.0.1</strong>.</p></li>
<li><p>Upgraded STM32 GUI Interface to use <strong>GUI_V1.13.0</strong>.</p></li>
<li><p>Upgraded STM32 Tracer Emb to use <strong>V1.6.0</strong>.</p></li>
<li><p><strong>CMSIS</strong></p>
<ul>
<li>General updates to fix known defects and enhancements implementation.</li>
<li>Protect Vector table modification following SRAM or FLASH preprocessor directive by a generic preprocessor directive: USER_VECT_TAB_ADDRESS.</li>
<li>Added support of QUADSPI to STM32G471xx devices.</li>
</ul></li>
<li><p><strong>HAL</strong></p>
<ul>
<li>General updates to fix known defects and enhancements implementation.</li>
<li>Added new defines for ARM compiler V6:
<ul>
<li>__weak</li>
<li>__packed</li>
<li>__NOINLINE</li>
</ul></li>
<li><strong>LL RCC</strong> update
<ul>
<li>Private functions made static.</li>
</ul></li>
<li><strong>HAL CRYP</strong> update
<ul>
<li>Correction made for the Official NIST CCM test pattern ciphering failing when header length is null.</li>
<li>GCM/GMAC/CCM data header is now fed using DMA instead of polling.</li>
<li>Fixed CRYP HAL driver to manage GCM header lengths not multiple of 4 bytes in 8-bit, 16-bit and 32-bit data types.</li>
<li>Fixed handling of AUD with size not multiple of 4 bytes in CRYP_AESGCM_Process_IT for GCM.</li>
</ul></li>
<li><strong>HAL RTC</strong> Update
<ul>
<li>New APIs to subtract or add one hour to the calendar in one single operation without going through the initialization procedure (Daylight Saving):
<ul>
<li>Add HAL_RTC_DST_Add1Hour()</li>
<li>HAL_RTC_DST_Sub1Hour()</li>
<li>HAL_RTC_DST_SetStoreOperation()</li>
<li>HAL_RTC_DST_ClearStoreOperation()</li>
</ul></li>
<li>Fixed executing TimeStamp callback when HAL_RTC_SetTimeStamp is called with “Rising Edge” configuration
<ul>
<li>Updated HAL_RTC_SetTimeStamp() API to call __HAL_RTC_TIMESTAMP_EXTI_ENABLE_IT before configuring the TimeStamp.</li>
</ul></li>
</ul></li>
<li><strong>HAL/LL TIM</strong> update
<ul>
<li>Updated HAL_TIMEx_OnePulseN_Start() and HAL_TIMEx_OnePulseN_Stop() APIs (pooling and IT mode) to take into consideration all OutputChannel parameters.</li>
<li>Corrected reversed description of TIM_LL_EC_ONEPULSEMODE One Pulse Mode.</li>
<li>Updated LL_TIM_GetCounterMode() API to return the correct counter mode.</li>
</ul></li>
<li><strong>HAL/LL LPTIM</strong> update
<ul>
<li>Updated HAL_LPTIM_Init() API implementation to configure digital filter for external clock when LPTIM is configured with internal clock source.</li>
</ul></li>
<li><strong>HAL/LL HRTIM</strong> update
<ul>
<li>IRQ handlers optimized by reducing the multiple read-accesses to ISR and IER registers to one read-access per register.</li>
<li>LL_HRTIM_FLT_SetSrc() API updated to avoid overwriting the content of FLTINR2 register on successive calls.</li>
</ul></li>
<li><strong>HAL EXTI</strong> update
<ul>
<li>__EXTI__LINE is now used instead of <strong>LINE</strong> which is a standard C macro.</li>
</ul></li>
<li><strong>HAL OPAMP</strong> update
<ul>
<li>Corrected OPAMPs outputs for the STM32G4 device table to be coherent with reference manual.</li>
</ul></li>
<li><strong>HAL/LL ADC</strong> Update
<ul>
<li>Update HAL_ADC_DeInit() to avoid ADC hardware resource deinitialization when other ADC instances sharing the same common ADC instance are disable.</li>
<li>Update temperature sensor stabilization time management.</li>
<li>Update timeout mechanism to avoid false timeout detection in case of preemption.</li>
<li>Align the defined value of internal regulator stabilization time (LL_ADC_DELAY_INTERNAL_REGUL_STAB_US) with product documentation (20us instead of 10us).</li>
</ul></li>
<li><strong>HAL DAC</strong> update
<ul>
<li>Updated HAL_DAC_Stop_DMA() API to not return HAL_ERROR when DAC is already disabled.</li>
<li>Updated HAL_DAC_ConfigChannel to return the right timeout error for channel 2.</li>
<li>Update HAL_DACEx_DualStart when checking if the software trigger enabled:
<ul>
<li>DAC_TRIGGER_SOFTWARE instead of DAC_CR_TEN1</li>
<li>(DAC_TRIGGER_SOFTWARE << (DAC_CHANNEL_2 & 0x10UL)) instead of DAC_CR_TEN2</li>
</ul></li>
</ul></li>
<li><strong>HAL NOR</strong> Update
<ul>
<li>Corrected how p_endaddress is computed and how p_currentaddress is used in the HAL_NOR_ProgramBuffer() API.</li>
<li>NOR command sets can now be selected by manufacturer code, as specified in JEDEC JEP137B 2004-05, using NOR_HandleTypeDef field CommandSet. the following APIs have been updated:
<ul>
<li>HAL_NOR_Init()</li>
<li>HAL_NOR_Read_ID()</li>
<li>HAL_NOR_ReturnToReadMode()</li>
<li>HAL_NOR_Read()</li>
<li>HAL_NOR_Program()</li>
<li>HAL_NOR_ReadBuffer()</li>
<li>HAL_NOR_ProgramBuffer()</li>
<li>HAL_NOR_Erase_Block()</li>
<li>HAL_NOR_Erase_Chip()</li>
<li>HAL_NOR_GetStatus()</li>
</ul></li>
<li>Added new command operations:
<ul>
<li>NOR_CMD_READ_ARRAY</li>
<li>NOR_CMD_WORD_PROGRAM</li>
<li>NOR_CMD_BUFFERED_PROGRAM</li>
<li>NOR_CMD_CONFIRM</li>
<li>NOR_CMD_BLOCK_ERASE</li>
<li>NOR_CMD_BLOCK_UNLOCK</li>
<li>NOR_CMD_READ_STATUS_REG</li>
<li>NOR_CMD_CLEAR_STATUS_REG</li>
</ul></li>
<li>Updated muliple APIs to treat separately the different memory types.</li>
</ul></li>
<li><strong>LL FMC </strong> Update
<ul>
<li>Updated FMC_NORSRAM_Extended_Timing_Init() API to manage the “bus turn around duration” parameter availability.</li>
<li>Updated FMC_NORSRAM_Init() API to resolve compilation issue with Microsoft Visual Studio 2017.</li>
</ul></li>
<li><strong>HAL NAND</strong> update
<ul>
<li>Updated HAL_NAND_Read_SpareArea_16b() and HAL_NAND_Write_SpareArea_16b() APIs to fix the column address calculation.</li>
</ul></li>
<li><strong>HAL/LL SMARTCARD</strong> update
<ul>
<li>Fixed invalid initialization of SMARTCARD configuration by removing the FIFO mode configuration.</li>
<li>Fixed typos in SMARTCARD State definition description.</li>
<li>Optimized stack usage for multiple APIs.</li>
</ul></li>
<li><strong>HAL/LL IRDA</strong> update
<ul>
<li>Fixed typos in IRDA State definition description.</li>
<li>Optimized stack usage for multiple APIs.</li>
</ul></li>
<li><strong>HAL/LL UART</strong> update
<ul>
<li>Enhanced reception for idle services (ReceptionToIdle):
<ul>
<li>Added a new field (HAL_UART_RxTypeTypeDef) to the UART_HandleTypeDef structure to identify the type of ongoing reception.</li>
<li>Added UART Reception Event Callback registration.</li>
</ul></li>
<li>Added reception specific APIs specific to reception for Idle transfer in different modes:
<ul>
<li>HAL_UARTEx_ReceiveToIdle(): Receive an amount of data in blocking mode until either the expected number of data is received or an IDLE event occurs.</li>
<li>HAL_UARTEx_ReceiveToIdle_IT(): Receive an amount of data in interrupt mode until either the expected number of data is received or an IDLE event occurs.</li>
<li>HAL_UARTEx_ReceiveToIdle_DMA(): Receive an amount of data in DMA mode until either the expected number of data is received or an IDLE event occurs.</li>
</ul></li>
<li>Updated HAL_UART_Receive(), HAL_UART_Receive_IT() and HAL_UART_Receive_DMA() APIs to support the new enhancement of ReceptionToIdle.</li>
<li>Fixed invalid initialization of UART configuration by removing FIFO mode configuration as it is not member of UART_InitTypeDef Structure.</li>
<li>Fixed typos in UART State definition description.</li>
<li>Optimized stack usage for multiple APIs.</li>
</ul></li>
<li><strong>HAL/LL USART</strong> update
<ul>
<li>Removed IS_USART_OVERSAMPLING() as it is unused.</li>
<li>LL_USART_ClockInit now supports clock phase and clock polarity configuration for SPI_Slave mode.</li>
<li>Remove useless check on maximum BRR value by removing IS_LL_USART_BRR_MAX() macro.</li>
<li>Optimized stack usage for multiple APIs.</li>
<li>Removed useless check on maximum BRR value by removing IS_LL_USART_BRR_MAX() macro.</li>
</ul></li>
<li><strong>HAL SMBUS</strong> update
<ul>
<li>Support for Fast Mode Plus to be SMBUS rev 3 compliant.
<ul>
<li>Added HAL_SMBUSEx_EnableFastModePlus() and HAL_SMBUSEx_DisableFastModePlus() APIs to manage Fm+.</li>
</ul></li>
</ul></li>
<li><strong>LL SPI</strong> update
<ul>
<li>Updated to set the FRXTH bit for 8bit data for LL_SPI_Init() API.</li>
</ul></li>
<li><strong>HAL WWDG</strong> update
<ul>
<li>Updated HAL driver description.</li>
</ul></li>
<li><strong>HAL/LL USB</strong> update
<ul>
<li>Fixed USB ISO IN double buffer mode Transfer.</li>
<li>Fixed PMA rx count descriptor
<ul>
<li>Added few instructions before reading the RX count register.</li>
</ul></li>
</ul></li>
</ul></li>
<li><p><strong>Middlewares</strong></p>
<ul>
<li>Upgraded FreeRTOS to use <strong>V10.3.1</strong> ST modified <strong>20200831</strong>.</li>
<li>Upgraded USB Device Lib to use <strong>V2.7.1</strong>.</li>
<li>Upgraded STM32 USB Power Delivery Core Library to use <strong>v3.3.0</strong></li>
<li>Upgraded STM32 USB Power Delivery Device Library to use <strong>g4_v5.0.0</strong></li>
<li>Upgraded STM32 OpenBootLoader to use <strong>v3.0.1</strong>.</li>
<li>Upgraded STM32 GUI Interface to use <strong>GUI_V1.13.0</strong>.</li>
<li>Upgraded STM32 Tracer Emb to use <strong>V1.6.0</strong>.</li>
</ul></li>
<li><p><strong>BSP</strong></p>
<ul>
<li>Add License.md file required for GitHub publication</li>
<li>General updates to fix MISRA-C®:2012 warnings.</li>
<li>BSP Components
<ul>
<li>HX8347D
<ul>
<li>Updated to fix display issue of a big bitmap image.</li>
</ul></li>
</ul></li>
<li>BSP Board
<ul>
<li>stm32g474e_eval
<ul>
<li>Updated to fix display issue of a big bitmap image.</li>
<li>Updated to reset IOEXPANDER mode in IT mode.</li>
</ul></li>
</ul></li>
</ul></li>
<li><p><strong>Projects</strong></p>
<ul>
<li>General updates to fix known defects and enhancements implementation.</li>
<li>General updates to be compliant with CubeMx <strong>6.2.0</strong> version.</li>
<li>Support of new ARM compiler Keil V6 (AC5-like warnings mode).</li>
<li>Added Uart example showing use of HAL UART enhanced reception services (ReceptionToIdle) API for G474RE-Nucleo and G431RB-Nucleo boards</li>
<li>Updated examples and applications to avoid clearing DMA using global flag GIFx.</li>
<li>Updated RAM size in the flash and SRAM files .icf for all stm32G4 categories.</li>
<li>USBPD Applications: general corrections for conformance testing
<ul>
<li>Provided external API in CAD to allow application to know which RP present in Sink.</li>
<li>Increased delay before reading CC values after VCC activation of TCPP01.</li>
<li>Updated to fix RP resistor which shall be reset to the default value during the HardReset AMS.</li>
<li>Updated FTL files to allow adding more user code.</li>
</ul></li>
<li>NUCLEO-G491RE:
<ul>
<li>Fix known limitations :
<ul>
<li>OpenBootloader application for NUCLEO-G491RE CubeIDE project is not provided.</li>
</ul></li>
</ul></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-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-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 Core</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.1</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.1</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;"><strong>V1.0.2</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;">BSP STM32G474E-EVAL</td>
<td style="text-align: left;"><strong>V1.1.3</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;">BSP B-G474E-DPOW1</td>
<td style="text-align: left;"><strong>V1.1.2</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;"><strong>V2.7.1</strong></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;"><strong>v3.3.0</strong></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;">STM32 USB Power Delivery Device Library</td>
<td style="text-align: left;"><strong>g4_v5.0.0</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;"><strong>V10.3.1</strong></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 <strong>20200831</strong></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;"><strong>V3.0.1</strong></td>