forked from STMicroelectronics/STM32CubeL4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Release_Notes.html
5649 lines (5648 loc) · 647 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 STM32CubeL4 Firmware Package</title>
<style type="text/css">
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
</style>
<link rel="stylesheet" href="_htmresc/mini-st.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-stm32cubel4-firmware-package"><small>Release Notes for</small> <mark>STM32CubeL4 Firmware Package</mark></h1>
<p>Copyright © 2017 STMicroelectronics<br />
</p>
<a href="https://www.st.com" class="logo"><img src="_htmresc/st_logo.png" alt="ST logo" /></a>
</center>
</div>
</div>
<h1 id="license">License</h1>
<p>Licensed by ST under ST license SLA0048 (the "License"). You may not use this package except in compliance with the License. You may obtain a copy of the License at:</p>
<p><a href="http://www.st.com/SLA0048">http://www.st.com/SLA0048</a></p>
<h1 id="purpose">Purpose</h1>
<p><span style="font-weight: bold;">STMCube is an STMicroelectronics original initiative to ease developers life by reducing development efforts, time and cost.</span></p>
<p>STM32Cube covers STM32 portfolio.</p>
<p>STM32Cube Version 1.x includes:</p>
<ul>
<li><p>The STM32CubeMX, a graphical software configuration tool that allows to generate C initialization code using graphical wizards.</p></li>
<li><p>A comprehensive embedded software platform, delivered per series (such as STM32CubeL4 for STM32L4 series)</p>
<ul>
<li><p>The STM32Cube HAL, an STM32 abstraction layer embedded software, ensuring maximized portability across STM32 portfolio</p></li>
<li><p>A consistent set of middleware components such as RTOS, USB, TCP/IP, Graphics</p></li>
</ul></li>
</ul>
<p>All embedded software utilities come with a full set of examples.</p>
<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>STM32Cube</figcaption>
</figure>
<p>The <strong>drivers</strong> provided within this package <strong>support</strong> the lines</p>
<ul>
<li><strong>STM32L412/422</strong></li>
<li><strong>STM32L432/431/432/433/442/443</strong></li>
<li><strong>STM32L451/452/462</strong></li>
<li><strong>STM32L471/475/476/485/486</strong></li>
<li><strong>STM32L496/4A6</strong></li>
<li><strong>STM32L4P5/4Q5</strong></li>
<li><strong>STM32L4R5/4R7/4R9/4S5/4S7/4S9</strong></li>
</ul>
<p>For a quick start on the STM32CubeL4 firmware package, refer to <a href="Documentation/STM32CubeL4GettingStarted.pdf">UM1860</a> and download the 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><p><a href="Documentation/STM32CubeL4GettingStarted.pdf">UM1860</a>: Getting started with STM32CubeL4 for STM32L4 Series and STM32L4+ Series</p></li>
<li><p><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00173145.pdf">UM1884</a>: Description of STM32L4 HAL drivers</p></li>
<li><p><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00108129.pdf">UM1734</a>: STM32Cube USB device library</p></li>
<li><p><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00105256.pdf">UM1720</a>: STM32Cube USB host library</p></li>
<li><p><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00105259.pdf">UM1721</a>: Developing Applications on STM32Cube with FatFs</p></li>
<li><p><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00105262.pdf">UM1722</a>: Developing Applications on STM32Cube with RTOS</p></li>
<li><p><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00211709.pdf">UM1916</a>: STM32CubeL4 Nucleo demonstration firmware</p></li>
<li><p><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00213619.pdf">UM1919</a>: STM32CubeL4 demonstration firmware for 32L476GDISCOVERY discovery kit</p></li>
<li><p><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00222162.pdf">UM1937</a>: STM32CubeL4 demonstration firmware for STM32L476G-EVAL board</p></li>
<li><p><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00344753.pdf">UM2145</a>: STM32CubeL4 demonstration firmware for 32L496GDISCOVERY discovery kit</p></li>
</ul>
</div>
<div class="col-sm-12 col-lg-8">
<h1 id="update-history">Update History</h1>
<div class="collapse">
<input type="checkbox" id="collapse-section24" checked aria-hidden="true"> <label for="collapse-section24" aria-hidden="true">V1.15.0 / 22-November-2019</label>
<div>
<h2 id="main-changes">Main Changes</h2>
<h3 id="add-support-of-stm32l4p5xx-and-stm32l4q5xx-devices">Add support of STM32L4P5xx and STM32L4Q5xx devices</h3>
<ul>
<li>New <strong>PKA</strong> and <strong>PSSI</strong> peripherals</li>
<li>Updated <strong>PWR</strong> peripheral for finer SRAM2 retention in standby mode</li>
<li>Updated <strong>RNG</strong> peripheral to open entropy configuration</li>
</ul>
<h2 id="contents">Contents</h2>
<ul>
<li><strong>CMSIS Device</strong> updates
<ul>
<li>Update device description files, start-up files to add support of <strong>STM32L4P5xx/STM32L4Q5xx</strong></li>
<li>Add minor set corrections related to all devices, refer to <a href="Drivers/CMSIS/Device/ST/STM32L4xx/Release_Notes.html">release notes</a> for further details</li>
</ul></li>
<li><strong>HAL/LL Drivers</strong> updates
<ul>
<li>Deliver new <strong>HAL/LL PKA</strong> and <strong>HAL PSSI</strong> drivers</li>
<li>Update all HAL/LL drivers to support <strong>STM32L4P5xx/STM32L4Q5xx</strong></li>
<li>Correction of several issues applicable to all devices, refer to <a href="Drivers/STM32L4xx_HAL_Driver/Release_Notes.html">release notes</a> for further details</li>
</ul></li>
<li><p><strong>Projects</strong> updates</p>
<ul>
<li><strong>32L4P5GDISCOVERY</strong>
<ul>
<li>Emphasis on eMMC and external FLASH and PSRAM access</li>
<li>HAL Template and LL Template</li>
<li>26 HAL and LL example projects illustrating the usage of the HAL and LL DMA2D, GPIO, HASH, LPTIM, OSPI, PWR, RCC, under Project/32L4P5GDISCOVERY/Examples and Project/32L4P5GDISCOVERY/Examples_LL</li>
<li>2 applications demonstrating the integration of Middleware FatFS and USB_Device libraries, under Project/32L4P5GDISCOVERY/Applications</li>
<li>1 demonstration illustrating the joint use of FatFS and USB_Device to watermark files in png format, under Project/32L4P5GDISCOVERY/Demonstrations</li>
</ul></li>
<li><strong>NUCLEO-L4P5ZG</strong>
<ul>
<li>Illustration of new PKA and PSSI peripherals</li>
<li>Illustration of RNG peripheral configuration new feature<br />
</li>
<li>HAL Template and LL Template</li>
<li>66 HAL, LL and MIX example projects illustrating the usage of the HAL and LL ADC, CRC, DMA, FLASH, GPIO, PKA, PSSI, PWR, RCC, RNG ,RTC, under Project/NUCLEO-L4P5ZG/Examples, Project/NUCLEO-L4P5ZG/Examples_LL and Project/NUCLEO-L4P5ZG/Examples_MIX</li>
</ul></li>
<li><p>Projects release notes (updates in <span style="font-weight: bold;">bold</span>)</p>
<ul>
<li><p>32L476GDISCOVERY</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/32L476GDISCOVERY/Applications/Release_Notes.html">release notes</a>)</li>
<li>Demonstrations (<a href="Projects/32L476GDISCOVERY/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/32L476GDISCOVERY/Examples/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/32L476GDISCOVERY/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/32L476GDISCOVERY/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>32L496GDISCOVERY</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/32L496GDISCOVERY/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/32L496GDISCOVERY/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Examples</strong> (<a href="Projects/32L496GDISCOVERY/Examples/Release_Notes.html">release notes</a>)</li>
<li>LL Examples (<a href="Projects/32L496GDISCOVERY/Examples_LL/Release_Notes.html">release notes</a>)</li>
<li>Mix HAL/LL Examples (<a href="Projects/32L496GDISCOVERY/Examples_MIX/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/32L496GDISCOVERY/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/32L496GDISCOVERY/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p><strong>32L4P5GDISCOVERY</strong></p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/32L4P5GDISCOVERY/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/32L4P5GDISCOVERY/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li><strong>Examples</strong> (<a href="Projects/32L4P5GDISCOVERY/Examples/Release_Notes.html">release notes</a>)<br />
</li>
<li><strong>LL Examples</strong> (<a href="Projects/32L4P5GDISCOVERY/Examples_LL/Release_Notes.html">release notes</a>)<br />
</li>
<li><strong>HAL Templates</strong> (<a href="Projects/32L4P5GDISCOVERY/Templates/Release_Notes.html">release notes</a>)</li>
<li><strong>LL Templates</strong> (<a href="Projects/32L4P5GDISCOVERY/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>32L4R9IDISCOVERY</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/32L4R9IDISCOVERY/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/32L4R9IDISCOVERY/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/32L4R9IDISCOVERY/Examples/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/32L4R9IDISCOVERY/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/32L4R9IDISCOVERY/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>B-L475E-IOT01A</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/B-L475E-IOT01A/Applications/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/B-L475E-IOT01A/Examples/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/B-L475E-IOT01A/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/B-L475E-IOT01A/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p><strong>NUCLEO-L4P5ZG</strong></p>
<ul>
<li><strong>Examples</strong> (<a href="Projects/NUCLEO-L4P5ZG/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>Examples_LL</strong> (<a href="Projects/NUCLEO-L4P5ZG/Examples_LL/Release_Notes.html">release notes</a>)</li>
<li><strong>Examples_MIX</strong> (<a href="Projects/NUCLEO-L4P5ZG/Examples_MIX/Release_Notes.html">release notes</a>)<br />
</li>
<li><strong>HAL Templates</strong> (<a href="Projects/NUCLEO-L4P5ZG/Templates/Release_Notes.html">release notes</a>)</li>
<li><strong>LL Templates</strong> (<a href="Projects/NUCLEO-L4P5ZG/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L4R5ZI</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/NUCLEO-L4R5ZI/Applications/Release_Notes.html">release notes</a>)</li>
<li>Demonstrations (<a href="Projects/NUCLEO-L4R5ZI/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/NUCLEO-L4R5ZI/Examples/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/NUCLEO-L4R5ZI/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L4R5ZI/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L4R5ZI-P</p>
<ul>
<li><strong>HAL Examples</strong> (<a href="Projects/NUCLEO-L4R5ZI-P/Examples/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/NUCLEO-L4R5ZI-P/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L4R5ZI-P/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L412KB</p>
<ul>
<li>Applications (<a href="Projects/NUCLEO-L412KB/Applications/Release_Notes.html">release notes</a>)</li>
<li>Demonstrations (<a href="Projects/NUCLEO-L412KB/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/NUCLEO-L412KB/Examples/Release_Notes.html">release notes</a>)</li>
<li>LL Examples (<a href="Projects/NUCLEO-L412KB/Examples_LL/Release_Notes.html">release notes</a>)</li>
<li>Mix HAL/LL Examples (<a href="Projects/NUCLEO-L412KB/Examples_MIX/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/NUCLEO-L412KB/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L412KB/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L412RB-P</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/NUCLEO-L412RB-P/Applications/Release_Notes.html">release notes</a>)</li>
<li>Demonstrations (<a href="Projects/NUCLEO-L412RB-P/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/NUCLEO-L412RB-P/Examples/Release_Notes.html">release notes</a>)</li>
<li>LL Examples (<a href="Projects/NUCLEO-L412RB-P/Examples_LL/Release_Notes.html">release notes</a>)</li>
<li>Mix HAL/LL Examples (<a href="Projects/NUCLEO-L412RB-P/Examples_MIX/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/NUCLEO-L412RB-P/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L412RB-P/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L432KC</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/NUCLEO-L432KC/Applications/Release_Notes.html">release notes</a>)</li>
<li>Demonstrations (<a href="Projects/NUCLEO-L432KC/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/NUCLEO-L432KC/Examples/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/NUCLEO-L432KC/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L432KC/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L433RC-P</p>
<ul>
<li>HAL Examples (<a href="Projects/NUCLEO-L433RC-P/Examples/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/NUCLEO-L433RC-P/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L433RC-P/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L452RE</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/NUCLEO-L452RE/Applications/Release_Notes.html">release notes</a>)</li>
<li>Demonstrations (<a href="Projects/NUCLEO-L452RE/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/NUCLEO-L452RE/Examples/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/NUCLEO-L452RE/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L452RE/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L452RE-P</p>
<ul>
<li>HAL Examples (<a href="Projects/NUCLEO-L452RE-P/Examples/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/NUCLEO-L452RE-P/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L452RE-P/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L476RG</p>
<ul>
<li>Applications (<a href="Projects/NUCLEO-L476RG/Applications/Release_Notes.html">release notes</a>)</li>
<li>Demonstrations (<a href="Projects/NUCLEO-L476RG/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/NUCLEO-L476RG/Examples/Release_Notes.html">release notes</a>)</li>
<li>LL Examples (<a href="Projects/NUCLEO-L476RG/Examples_LL/Release_Notes.html">release notes</a>)</li>
<li>Mix HAL/LL Examples (<a href="Projects/NUCLEO-L476RG/Examples_MIX/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/NUCLEO-L476RG/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L476RG/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L496ZG</p>
<ul>
<li>Applications (<a href="Projects/NUCLEO-L496ZG/Applications/Release_Notes.html">release notes</a>)</li>
<li>Demonstrations (<a href="Projects/NUCLEO-L496ZG/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/NUCLEO-L496ZG/Examples/Release_Notes.html">release notes</a>)</li>
<li>LL Examples (<a href="Projects/NUCLEO-L496ZG/Examples_LL/Release_Notes.html">release notes</a>)</li>
<li>Mix HAL/LL Examples (<a href="Projects/NUCLEO-L496ZG/Examples_MIX/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/NUCLEO-L496ZG/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L496ZG/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L496ZG-P</p>
<ul>
<li>HAL Examples (<a href="Projects/NUCLEO-L496ZG-P/Examples/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/NUCLEO-L496ZG-P/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L496ZG-P/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>STM32L4R9I-EVAL</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/STM32L4R9I-EVAL/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/STM32L4R9I-EVAL/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/STM32L4R9I-EVAL/Examples/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/STM32L4R9I-EVAL/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/STM32L4R9I-EVAL/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>STM32L476G-EVAL</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/STM32L476G-EVAL/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/STM32L476G-EVAL/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/STM32L476G-EVAL/Examples/Release_Notes.html">release notes</a>)</li>
<li>HAL Templates (<a href="Projects/STM32L476G-EVAL/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/STM32L476G-EVAL/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>WIN32</p>
<ul>
<li>STemWin/Simulation (<a href="Projects/WIN32/STemWin_Simulation/Release_Notes.html">release notes</a>)</li>
</ul></li>
</ul></li>
</ul></li>
</ul>
<h2 id="components">Components</h2>
<p>Note: in the tables below, components in <span style="font-weight: bold;">bold</span> have changed since previous release</p>
<table>
<caption><strong>Drivers</strong></caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">License</th>
<th style="text-align: center;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td style="text-align: left;">V5.4.0</td>
<td style="text-align: left;"><a href="Drivers/CMSIS/LICENSE.txt">Apache License v2.0</a></td>
<td style="text-align: center;"><a href="Drivers/CMSIS/README.md">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>STM32L4xx CMSIS</strong></td>
<td style="text-align: left;"><strong>V1.6.0</strong></td>
<td style="text-align: left;"><a href="Drivers/CMSIS/LICENSE.txt">Apache License v2.0</a></td>
<td style="text-align: center;"><a href="Drivers/CMSIS/Device/ST/STM32L4xx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>STM32L4xx HAL</strong></td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/STM32L4xx_HAL_Driver/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP B-L475E-IOT01</strong></td>
<td style="text-align: left;"><strong>V1.1.6</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/B-L475E-IOT01/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP STM32L476G_EVAL</strong></td>
<td style="text-align: left;"><strong>V2.1.4</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32L476G_EVAL/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP STM32L4R9I_EVAL</strong></td>
<td style="text-align: left;"><strong>V1.0.4</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32L4R9I_EVAL/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP STM32L476G-Discovery</strong></td>
<td style="text-align: left;"><strong>V2.0.5</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32L476G-Discovery/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP STM32L496G-Discovery</strong></td>
<td style="text-align: left;"><strong>V1.1.4</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32L496G-Discovery/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP STM32L4P5G-Discovery</strong></td>
<td style="text-align: left;"><strong>V1.0.0</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32L4P5G-Discovery/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP STM32L4R9I-Discovery</strong></td>
<td style="text-align: left;"><strong>V1.0.3</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32L4R9I-Discovery/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP STM32L4xx_Nucleo</strong></td>
<td style="text-align: left;"><strong>V2.1.6</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32L4xx_Nucleo/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP STM32L4xx_Nucleo_32</strong></td>
<td style="text-align: left;"><strong>V1.0.3</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32L4xx_Nucleo_32/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP STM32L4xx_Nucleo_144</strong></td>
<td style="text-align: left;"><strong>V1.0.7</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/STM32L4xx_Nucleo_144/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Adafruit Shield (reference ID 802)</td>
<td style="text-align: left;">V3.0.4</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Adafruit_Shield/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Common</td>
<td style="text-align: left;">V5.1.2</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/Common/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP cs42l51</td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/cs42l51/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP cs43l22</td>
<td style="text-align: left;">V2.0.4</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/cs43l22/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP cy8c4014lqi</strong></td>
<td style="text-align: left;"><strong>V1.0.0</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/cy8c4014lqi/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP ft3x67</td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/ft3x67/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP ft6x06</td>
<td style="text-align: left;">V1.0.3</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/ft6x06/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP ft5336</td>
<td style="text-align: left;">V1.0.2</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/ft5336/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP hts221</td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/hts221/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP hx8347g</td>
<td style="text-align: left;">V1.1.2</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/hx8347g/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP hx8347i</strong></td>
<td style="text-align: left;"><strong>V1.0.1</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/hx8347i/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP iss66wvh8m8</td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/iss66wvh8m8/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP l3gd20</td>
<td style="text-align: left;">V2.0.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/l3gd20/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP lis3mdl</td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/lis3mdl/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP lps22hb</td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/lps22hb/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP ls016b8uy</td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/ls016b8uy/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP lsm303c</td>
<td style="text-align: left;">V2.0.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/lsm303c/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP lsm303dlhc</td>
<td style="text-align: left;">V2.0.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/lsm303c/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP lsm6dsl</td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/lsm6dsl/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP m24sr</td>
<td style="text-align: left;">V1.1.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/m24sr/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP mfxstm32l152</td>
<td style="text-align: left;">V2.0.3</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/mfxstm32l152/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP mx25lm51245g</td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/mx25lm51245g/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP mx25r6435f</td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/mx25r6435f/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP n25q128a</td>
<td style="text-align: left;">V1.0.2</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/n25q128a/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP n25q256a</td>
<td style="text-align: left;">V1.0.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/n25q256a/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP ov9655</td>
<td style="text-align: left;">V1.0.2</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/ov9655/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP rk043fn48h</td>
<td style="text-align: left;">V1.0.2</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/rk043fn48h/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP st7735</td>
<td style="text-align: left;">V1.1.5</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/st7735/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP st7789h2</td>
<td style="text-align: left;">V1.1.3</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/st7789h2/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP stmpe811</td>
<td style="text-align: left;">V2.0.2</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/stmpe811/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP stmpe1600</td>
<td style="text-align: left;">V1.1.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/stmpe1600/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP wm8994</td>
<td style="text-align: left;">V2.3.1</td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Drivers/BSP/Components/wm8994/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption><strong>Middlewares</strong></caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: center;">License</th>
<th style="text-align: center;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><strong>STM32 USB Host Library</strong></td>
<td style="text-align: left;"><strong>V3.3.3</strong></td>
<td style="text-align: center;"><a href="http://www.st.com/SLA004">SLA0044</a></td>
<td style="text-align: center;"><a href="Middlewares/ST/STM32_USB_Host_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>STM32 USB Device Library</strong></td>
<td style="text-align: left;"><strong>V2.5.3</strong></td>
<td style="text-align: center;"><a href="http://www.st.com/SLA004">SLA0044</a></td>
<td style="text-align: center;"><a href="Middlewares/ST/STM32_USB_Device_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>STM32 TouchSensing Library</strong></td>
<td style="text-align: left;"><strong>V2.2.4</strong></td>
<td style="text-align: center;"><a href="http://www.st.com/SLA004">SLA0044</a></td>
<td style="text-align: center;"><a href="Middlewares/ST/STM32_TouchSensing_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>FatFS</strong></td>
<td style="text-align: left;"><strong>R0.12c</strong></td>
<td style="text-align: center;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Middlewares/Third_Party/FatFs/src/00history.txt">FatFS release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"></td>
<td style="text-align: left;"><strong>ST modified 20191011</strong></td>
<td style="text-align: center;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Middlewares/Third_Party/FatFs/src/st_readme.txt">ST release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>FreeRTOS</strong></td>
<td style="text-align: left;"><strong>V10.2.1</strong></td>
<td style="text-align: center;"><a href="Middlewares/Third_Party/FreeRTOS/License/license.txt">MIT</a></td>
<td style="text-align: center;"><a href="Middlewares/Third_Party/FreeRTOS/Source/readme.txt">FreeRTOS release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"></td>
<td style="text-align: left;"><strong>ST modified 20190719</strong></td>
<td style="text-align: center;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Middlewares/Third_Party/FreeRTOS/Source/st_readme.txt">ST release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STemWin</td>
<td style="text-align: left;">V5.44</td>
<td style="text-align: center;"><a href="http://www.st.com/SLA004">SLA0044</a></td>
<td style="text-align: center;"><a href="Middlewares/ST/STemWin/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption><strong>Utilities</strong></caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: center;">Version</th>
<th style="text-align: center;">License</th>
<th style="text-align: center;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CPU</td>
<td style="text-align: center;">V1.1.2</td>
<td style="text-align: center;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Utilities/CPU/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Fonts</td>
<td style="text-align: center;">V1.0.1</td>
<td style="text-align: center;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Utilities/Fonts/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Log</td>
<td style="text-align: center;">V1.0.2</td>
<td style="text-align: center;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: center;"><a href="Utilities/Log/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>STM32Nucleo_Power_GUI</strong> (add binary for NUCLEO-L4P5ZG board to demonstrate low power performance)</td>
<td style="text-align: center;"><strong>n/a</strong></td>
<td style="text-align: center;"><strong>n/a</strong></td>
<td style="text-align: center;"><strong>n/a</strong></td>
</tr>
</tbody>
</table>
<p><br />
</p>
<h2 id="known-limitations">Known Limitations</h2>
<ul>
<li><p>SW4STM32 project is not provided for STM32L476G-EVAL demonstration.</p></li>
<li><p>MDK-ARM and SW4STM32 projects are not provided for STM32L4R9I-EVAL demonstrations.</p></li>
</ul>
<h2 id="development-toolchains-and-compilers">Development Toolchains and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.32.3 + ST-Link
<ul>
<li>Limitations: IAR Embedded Workbench for ARM (EWARM) toolchain V7.80.4 required for STM32L4R9I-EVAL STemWin MB1315 demonstration</li>
</ul></li>
<li><p>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.27.1.0 + Pack Keil STM32L4P5xx_DFP.1.0.0</p></li>
<li><p>STM32CubeIDE V1.2.0</p></li>
<li><p>System Workbench STM32 (SW4STM32) toolchain V2.7</p></li>
<li>Tools
<ul>
<li>ST-Link Utility V4.3.0 with support of QSPI external loader for STM32L476G_EVAL, STM32L476G-Discovery, STM32L496G-Discovery, STM32L4R9I-EVAL and STM32L4R9I-Discovery boards</li>
<li>STM32CubeProgrammer v2.1.0 to support STM32L4P5xx/L4Q5xx devices</li>
</ul></li>
</ul>
<h2 id="supported-devices-and-boards">Supported Devices and boards</h2>
<ul>
<li>STM32L41x/L42x devices Rev1</li>
<li>STM32L43x/L44x devices Rev1</li>
<li>STM32L45x/L46x devices Rev2</li>
<li>STM32L47x/L48x devices Rev4</li>
<li>STM32L49x/L4Ax devices Rev2</li>
<li>STM32L4Px/L4Qx devices Rev1</li>
<li>STM32L4Rx/L4Sx devices Rev2</li>
<li>STM32L476G Evaluation board RevC (MB1144 C-01)</li>
<li>STM32L4R9I Evaluation board RevB (MB1313 B-03)</li>
<li>STM32L476G Discovery board RevC (MB1184 C-01)</li>
<li>STM32L496G Discovery board RevB (MB1261 B-01)</li>
<li>STM32L4P5G Discovery board RevB (MB1535 B-03)</li>
<li>STM32L4R9I Discovery board RevC (MB1311 C-01)</li>
<li>STM32L412KB Nucleo kit RevC (MB1180 C-01)</li>
<li>STM32L412RB Nucleo kit RevC (MB1319 C-01)</li>
<li>STM32L432KC Nucleo kit RevC (MB1180 C-01)</li>
<li>STM32L433RC Nucleo kit RevC (MB1319 C-01)</li>
<li>STM32L452RE Nucleo kit RevC (MB1136 C-03, MB1319 C-01)</li>
<li>STM32L476RG Nucleo kit RevC (MB1136 C-03)</li>
<li>STM32L496ZG Nucleo kit (MB1312/L A-01, MB1312/S A-01)</li>
<li>STM32L4P5ZG Nucleo kit (MB1312/L A-01)</li>
<li>STM32L4R5ZI Nucleo kit (MB1312/L A-01, MB1312/S A-01)</li>
<li>B-L475E-IOT01A board RevB (MB1297)</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section4" aria-hidden="true"> <label for="collapse-section4" aria-hidden="true">V1.14.0 / 03-April-2019</label>
<div>
<h2 id="main-changes-1">Main Changes</h2>
<h3 id="maintenance-release">Maintenance release</h3>
<ul>
<li><p>New <strong>HAL MMC</strong> driver release</p></li>
<li><p>Demonstrations binaries are no more delivered within the STM32CubeL4 MCU package. They are available for download, in addition to their required media files if any, in a standalone package accessible through each hardware board official webpage. Please refer to the corresponding demonstration binary readme.txt to get webpage for each board.</p></li>
</ul>
<h2 id="contents-1">Contents</h2>
<ul>
<li><strong>CMSIS Core</strong> updates
<ul>
<li>Upgrade to version V5.4.0</li>
</ul></li>
<li><strong>CMSIS Device</strong> updates
<ul>
<li>Update all files licenses to Apache v2.0</li>
<li>Minor set corrections, refer to <a href="Drivers/CMSIS/Device/ST/STM32L4xx/Release_Notes.html">release notes</a> for further details</li>
</ul></li>
<li><strong>HAL/LL Drivers</strong> updates
<ul>
<li>Deliver new <strong>HAL MMC</strong> driver</li>
<li>Provide additional corrections to Misra C:2012 warnings</li>
<li>Correct several software issues reported from the field on V1.13.0 or from internal testing, among which
<ul>
<li>SPI Abort procedure</li>
<li>RTC wake-up timer interruption management</li>
</ul></li>
<li>Refer to <a href="Drivers/STM32L4xx_HAL_Driver/Release_Notes.html">release notes</a> for further details</li>
</ul></li>
<li><p><strong>Projects</strong> updates</p>
<ul>
<li><p>The STM32CubeL4 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. The exhaustive list of projects is provided in this table (<a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>).</p></li>
<li><p>Update all EWARM and MDK-ARM projects to ensure projects refer to delivered /Firmware/Drivers/CMSIS/Include folder</p></li>
<li><p>Remove useless setting of ep0_mps in usbd_conf.c files for all USB_Device applications</p></li>
<li><p>Add HAL MMC driver files to all EWARM, MDK-ARM and SW4STM32 HAL Templates projects</p></li>
<li><p>Projects release notes (updates in <span style="font-weight: bold;">bold</span>)</p>
<ul>
<li><p>32L476GDISCOVERY</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/32L476GDISCOVERY/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/32L476GDISCOVERY/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/32L476GDISCOVERY/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/32L476GDISCOVERY/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/32L476GDISCOVERY/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>32L496GDISCOVERY</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/32L496GDISCOVERY/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/32L496GDISCOVERY/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/32L496GDISCOVERY/Examples/Release_Notes.html">release notes</a>)</li>
<li>LL Examples (<a href="Projects/32L496GDISCOVERY/Examples_LL/Release_Notes.html">release notes</a>)</li>
<li>Mix HAL/LL Examples (<a href="Projects/32L496GDISCOVERY/Examples_MIX/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/32L496GDISCOVERY/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/32L496GDISCOVERY/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>32L4R9IDISCOVERY</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/32L4R9IDISCOVERY/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/32L4R9IDISCOVERY/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/32L4R9IDISCOVERY/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/32L4R9IDISCOVERY/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/32L4R9IDISCOVERY/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>B-L475E-IOT01A</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/B-L475E-IOT01A/Applications/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/B-L475E-IOT01A/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/B-L475E-IOT01A/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/B-L475E-IOT01A/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L4R5ZI</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/NUCLEO-L4R5ZI/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/NUCLEO-L4R5ZI/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Examples</strong> (<a href="Projects/NUCLEO-L4R5ZI/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/NUCLEO-L4R5ZI/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L4R5ZI/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L4R5ZI-P</p>
<ul>
<li>HAL Examples (<a href="Projects/NUCLEO-L4R5ZI-P/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/NUCLEO-L4R5ZI-P/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L4R5ZI-P/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L412KB</p>
<ul>
<li>Applications (<a href="Projects/NUCLEO-L412KB/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/NUCLEO-L412KB/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/NUCLEO-L412KB/Examples/Release_Notes.html">release notes</a>)</li>
<li>LL Examples (<a href="Projects/NUCLEO-L412KB/Examples_LL/Release_Notes.html">release notes</a>)</li>
<li>Mix HAL/LL Examples (<a href="Projects/NUCLEO-L412KB/Examples_MIX/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/NUCLEO-L412KB/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L412KB/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L412RB-P</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/NUCLEO-L412RB-P/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/NUCLEO-L412RB-P/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Examples</strong> (<a href="Projects/NUCLEO-L412RB-P/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>LL Examples</strong> (<a href="Projects/NUCLEO-L412RB-P/Examples_LL/Release_Notes.html">release notes</a>)</li>
<li>Mix HAL/LL Examples (<a href="Projects/NUCLEO-L412RB-P/Examples_MIX/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/NUCLEO-L412RB-P/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L412RB-P/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L432KC</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/NUCLEO-L432KC/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/NUCLEO-L432KC/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li>HAL Examples (<a href="Projects/NUCLEO-L432KC/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/NUCLEO-L432KC/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L432KC/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L433RC-P</p>
<ul>
<li>HAL Examples (<a href="Projects/NUCLEO-L433RC-P/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/NUCLEO-L433RC-P/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L433RC-P/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L452RE</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/NUCLEO-L452RE/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/NUCLEO-L452RE/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Examples</strong> (<a href="Projects/NUCLEO-L452RE/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/NUCLEO-L452RE/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L452RE/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L452RE-P</p>
<ul>
<li>HAL Examples (<a href="Projects/NUCLEO-L452RE-P/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/NUCLEO-L452RE-P/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L452RE-P/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L476RG</p>
<ul>
<li>Applications (<a href="Projects/NUCLEO-L476RG/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/NUCLEO-L476RG/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Examples</strong> (<a href="Projects/NUCLEO-L476RG/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>LL Examples</strong> (<a href="Projects/NUCLEO-L476RG/Examples_LL/Release_Notes.html">release notes</a>)</li>
<li>Mix HAL/LL Examples (<a href="Projects/NUCLEO-L476RG/Examples_MIX/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/NUCLEO-L476RG/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L476RG/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L496ZG</p>
<ul>
<li>Applications (<a href="Projects/NUCLEO-L496ZG/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/NUCLEO-L496ZG/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Examples</strong> (<a href="Projects/NUCLEO-L496ZG/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>LL Examples</strong> (<a href="Projects/NUCLEO-L496ZG/Examples_LL/Release_Notes.html">release notes</a>)</li>
<li>Mix HAL/LL Examples (<a href="Projects/NUCLEO-L496ZG/Examples_MIX/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/NUCLEO-L496ZG/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L496ZG/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>NUCLEO-L496ZG-P</p>
<ul>
<li>HAL Examples (<a href="Projects/NUCLEO-L496ZG-P/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/NUCLEO-L496ZG-P/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/NUCLEO-L496ZG-P/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>STM32L4R9I-EVAL</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/STM32L4R9I-EVAL/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/STM32L4R9I-EVAL/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Examples</strong> (<a href="Projects/STM32L4R9I-EVAL/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/STM32L4R9I-EVAL/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/STM32L4R9I-EVAL/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>STM32L476G-EVAL</p>
<ul>
<li><strong>Applications</strong> (<a href="Projects/STM32L476G-EVAL/Applications/Release_Notes.html">release notes</a>)</li>
<li><strong>Demonstrations</strong> (<a href="Projects/STM32L476G-EVAL/Demonstrations/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Examples</strong> (<a href="Projects/STM32L476G-EVAL/Examples/Release_Notes.html">release notes</a>)</li>
<li><strong>HAL Templates</strong> (<a href="Projects/STM32L476G-EVAL/Templates/Release_Notes.html">release notes</a>)</li>
<li>LL Templates (<a href="Projects/STM32L476G-EVAL/Templates_LL/Release_Notes.html">release notes</a>)</li>
</ul></li>
<li><p>WIN32</p>
<ul>
<li>STemWin/Simulation (<a href="Projects/WIN32/STemWin_Simulation/Release_Notes.html">release notes</a>)</li>
</ul></li>
</ul></li>
</ul></li>
<li><p><strong>Utilities</strong> updates</p>
<ul>
<li>Remove STM32CubeUpdater from Utilities/PC_Software</li>
</ul></li>
</ul>
<h2 id="components-1">Components</h2>
<p>Note: in the tables below, components in <span style="font-weight: bold;">bold</span> have changed since previous release</p>
<table>
<caption><strong>Drivers</strong></caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">License</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><strong>Cortex-M CMSIS</strong></td>
<td style="text-align: left;"><strong>V5.4.0</strong></td>
<td style="text-align: left;"><a href="Drivers/CMSIS/LICENSE.txt">Apache License v2.0</a></td>
<td style="text-align: left;"><a href="Drivers/CMSIS/README.md">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>STM32L4xx CMSIS</strong></td>
<td style="text-align: left;"><strong>V1.5.1</strong></td>
<td style="text-align: left;"><a href="Drivers/CMSIS/LICENSE.txt">Apache License v2.0</a></td>
<td style="text-align: left;"><a href="Drivers/CMSIS/Device/ST/STM32L4xx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>STM32L4xx HAL</strong></td>
<td style="text-align: left;"><strong>V1.10.0</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: left;"><a href="Drivers/STM32L4xx_HAL_Driver/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP B-L475E-IOT01</strong></td>
<td style="text-align: left;"><strong>V1.1.4</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: left;"><a href="Drivers/BSP/B-L475E-IOT01/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP STM32L476G_EVAL</strong></td>
<td style="text-align: left;"><strong>V2.1.2</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32L476G_EVAL/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP STM32L4R9I_EVAL</strong></td>
<td style="text-align: left;"><strong>V1.0.3</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32L4R9I_EVAL/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP STM32L476G-Discovery</strong></td>
<td style="text-align: left;"><strong>V2.0.3</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32L476G-Discovery/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP STM32L496G-Discovery</strong></td>
<td style="text-align: left;"><strong>V1.1.2</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32L496G-Discovery/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP STM32L4R9I-Discovery</strong></td>
<td style="text-align: left;"><strong>V1.0.2</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32L4R9I-Discovery/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP STM32L4xx_Nucleo</strong></td>
<td style="text-align: left;"><strong>V2.1.5</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32L4xx_Nucleo/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP STM32L4xx_Nucleo_32</strong></td>
<td style="text-align: left;"><strong>V1.0.2</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32L4xx_Nucleo_32/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP STM32L4xx_Nucleo_144</strong></td>
<td style="text-align: left;"><strong>V1.0.6</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: left;"><a href="Drivers/BSP/STM32L4xx_Nucleo_144/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>BSP Adafruit Shield (reference ID 802)</strong></td>
<td style="text-align: left;"><strong>V3.0.4</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>
<td style="text-align: left;"><a href="Drivers/BSP/Adafruit_Shield/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>BSP Common</strong></td>
<td style="text-align: left;"><strong>V5.1.2</strong></td>
<td style="text-align: left;"><a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a></td>