Welcome to mirror list, hosted at ThFree Co, Russian Federation.

STM32CubeProjectsList.html « Projects - github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 420fd0e50e260cdc3ff3df25403dc3b458029f2a (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
<!DOCTYPE html>
<html>

  <head>
    <title>Projects Overview</title>
    <style>
      .descriptionColumn { min-width:550px;}
      em{color:red;font-weight: bold;}
      importantLink {font-size:10pt; font-family: "Verdana","sans-serif" color:black;}
      article{border: 1px solid #828282;margin: 20px 0px 20px 9px;}
      body{font-family: Verdana;font-size: 10pt; color: black;margin-left: 40px;}
      .picture{text-align: center}
      .copyright{text-align: center}
      h1{text-align: center;font-size: 20pt; font-family: Verdana; color: rgb(51, 102, 255);}
    </style>
  </head>
  <body>

    <h1>STM32CubeWB Firmware Examples for STM32WBxx Series</h1>

    <p class="copyright">Copyright 2019 STMicroelectronics</p>

    <div class="picture">
      <img alt="" id="_x0000_i1025" src="../_htmresc/st_logo.png" style="border: 0px solid ; width: 104px; height: 77px;"/>
    </div>

    <p>The STM32CubeWB 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>

    <div class="picture">
      <img alt="" src="../_htmresc/STM32Cube.bmp"/>
    </div>

    <p>The examples are classified depending on the STM32Cube level they apply to, and are named as follows:</p>

    <ul>
      <li id="Examples"><b>Examples</b> uses only the HAL and BSP drivers (Middleware not used), having as objective to demonstrate the product/peripherals features and usage. The examples are organized per peripheral (a folder for each peripheral, ex. TIM) and offers different complexity level from basic usage of a given peripheral (ex. PWM generation using timer) till integration of several peripherals(use DAC for signals generation with synchronization from TIM6 and DMA). Board resources usage is reduced to the strict minimum.</li>
      <li id="Examples_LL"><b>Examples_LL</b> uses only the LL drivers (HAL and Middleware not used), offering optimum implementation of typical use cases of the peripheral features and configuration procedures. The examples are organized per peripheral (a folder for each peripheral, ex. TIM) and runs exclusively on Nucleo board.</li>
      <li id="Examples_MIX"><b>Examples_MIX</b> uses only HAL, BSP and LL drivers (Middleware are not used), having as objective to demonstrate how to use both HAL and LL APIs in the same application, to combine the advantages of both APIs (HAL offers high level and functionalities oriented APIs, with high portability level and hide product or IPs complexity to end user. While LL offers low level APIs at registers level with better optimization). The examples are organized per peripheral (a folder for each peripheral, ex. TIM) and runs exclusively on Nucleo board.</li>
      <li id="Applications"><b>Applications</b> intends to demonstrate the product performance and how to use the different Middleware stacks available. The Applications are organized per Middleware (a folder for each Middleware, ex. USB Host) or product feature that need high level firmware bricks (ex. Audio). Integration Applications that use several Middleware stacks are provided as well.</li>
      <li id="Demonstrations"><b>Demonstrations</b> aims to integrate and run the maximum of peripherals and Middleware stacks to showcase the product features and performance.</li>
      <li>A Template project is provided to allow user to quickly build any firmware application on a given board.</li>
    </ul>

    <p>The examples are located under STM32Cube_FW_STM32CubeWB_VX.Y.Z\Projects\, and all of them have the same structure:</p>

    <ul>
      <li>\Inc folder that contains all header files.</li>
      <li>\Src folder for the sources code.</li>
      <li>\EWARM and \MDK-ARM folders contain the preconfigured project for each toolchain.</li>
      <li>readme.txt describing the example behavior and the environment required to run the example.</li>
    </ul>

    <p>To run the example, you have to do the following:</p>

    <ul>
      <li>Open the example using your preferred toolchain.</li>
      <li>Rebuild all files and load the image into target memory.</li>
      <li>Run the example by following the readme.txt instructions.</li>
      <li>
        <i><u>Note</u>: refer to section "Development Toolchains and Compilers" and "Supported Devices and EVAL boards" of the Firmware package release notes to know about the SW/HW environment used for the Firmware development and validation. The correct operation of the provided examples is not guaranteed on some environments, for example when using different compiler or board versions.</i>
      </li>
    </ul>

    <p>The provided examples can be tailored to run on any compatible hardware; user simply need to update the BSP drivers for his board, if it has the same hardware functions (LED, LCD display, pushbuttons...etc.). The BSP is based on a modular architecture that allows it to be ported easily to any hardware by just implementing the low level routines.</p>

    <p>
    <div>The table below contains the list of examples provided within STM32CubeWB Firmware package.</div>
    <div>In this table, the label <b>CubeMX</b> means the projects have been created using <a href="https://www.st.com/en/development-tools/stm32cubemx.html" target="_blank">STM32CubeMX</a>, the STM32Cube initialization code generator. Those projects can be opened with this tools to modify the projects itself. The others projects are manually created to demonstrate the product features.</div>
    </p>

    <p id="STM32WBxxImportantLink">
      <div>Reference materials available on <a href="http://www.st.com/stm32cubefw" target="_blank">www.st.com/stm32cubefw</a></div>
      <ul>
        <li>UM2550 : Getting started with STM32CubeWB for STM32WBxx Series.</li>
        <li>UM2551 : STM32CubeWB Nucleo demonstration firmware.</li>
        <li>UM2442 : Description of STM32WBxx HAL drivers.</li>
        <li>UM1721 : Developing Applications on STM32Cube with FatFs.</li>
        <li>UM1722 : Developing Applications on STM32Cube with RTOS.</li>
        <li>AN5289 : Building a Wireless application</li>
      </ul>
    </p>
    
    
		<table border='1' bgcolor='#f0f0fF' >
			<tr align=center style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;">
				<td><b>Level</b></td>
				<td><b>Module Name</b></td>
				<td><b>Project Name</b></td>
				<td class="descriptionColumn"><b>Description</b></td>
				<td>P-NUCLEO-WB55.USBDongle</td>
				<td>P-NUCLEO-WB55.Nucleo</td>
			</tr>
      <tr align=center>
        <td style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;" rowspan=2><p id="Templates">Templates</p></td>
        <td align=left rowspan=1><p id="-">-</p></td>
        <td align=left><p id="Starter project">Starter project</p></td>
        <td align=left>
This projects provides a reference template that can be used to build any firmware application.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;" align=center>
        <td colspan="3"><b>Total number of templates: 1</b></td>
        <td>0</td>
        <td>1</td>
      </tr>
      <tr align=center>
        <td style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;" rowspan=2><p id="Templates_LL">Templates_LL</p></td>
        <td align=left rowspan=1><p id="-">-</p></td>
        <td align=left><p id="Starter project">Starter project</p></td>
        <td align=left>
This projects provides a reference template through the LL API that can be used to build any firmware application.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;" align=center>
        <td colspan="3"><b>Total number of templates_ll: 1</b></td>
        <td>0</td>
        <td>1</td>
      </tr>
      <tr align=center>
        <td style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;" rowspan=99><p id="Examples">Examples</p></td>
        <td align=left rowspan=1><p id="-">-</p></td>
        <td align=left><p id="BSP">BSP</p></td>
        <td align=left>
How to use the bsp API of the NUCLEO-WB55.USBDongle board. 
</td>
        <td><font size="5" color=green>X</font></td>
        <td>-</td>
      </tr>
      <tr align=center>
        <td align=left rowspan=5><p id="ADC">ADC</p></td>
        <td align=left><p id="ADC_AnalogWatchdog">ADC_AnalogWatchdog</p></td>
        <td align=left>
How to use the ADC peripheral to perform conversions with an analog watchdog 
and out-of-window interrupts enabled.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="ADC_MultiChannelSingleConversion">ADC_MultiChannelSingleConversion</p></td>
        <td align=left>Use ADC to convert a several channels using sequencer in discontinuous mode, 
conversion data are transferred by DMA into an array, indefinitely (circular mode).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="ADC_Oversampling">ADC_Oversampling</p></td>
        <td align=left>Use ADC to convert a single channel but using oversampling feature to increase resolution. 
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="ADC_SingleConversion_TriggerSW_IT">ADC_SingleConversion_TriggerSW_IT</p></td>
        <td align=left>How to use the ADC to convert a single channel at each software start. This example
uses the interrupt programming model.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="ADC_SingleConversion_TriggerTimer_DMA">ADC_SingleConversion_TriggerTimer_DMA</p></td>
        <td align=left>Use ADC to convert a single channel at each trig from timer, 
conversion data are transferred by DMA into an array, indefinitely (circular mode).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="BSP">BSP</p></td>
        <td align=left><p id="BSP_Example">BSP_Example</p></td>
        <td align=left>
This example describes how to use the bsp API. 
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="COMP">COMP</p></td>
        <td align=left><p id="COMP_CompareGpioVsVrefInt_IT">COMP_CompareGpioVsVrefInt_IT</p></td>
        <td align=left>
How to configure the COMP peripheral to compare the external
voltage applied on a specific pin with the Internal Voltage Reference. 
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="COMP_CompareGpioVsVrefInt_Window_IT">COMP_CompareGpioVsVrefInt_Window_IT</p></td>
        <td align=left>
This example shows how to make an analog watchdog using the COMP peripherals in window mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="CRC">CRC</p></td>
        <td align=left><p id="CRC_Example">CRC_Example</p></td>
        <td align=left>
How to configure the CRC using the HAL API. The CRC (cyclic
redundancy check) calculation unit computes the CRC code of a given buffer of
32-bit data words, using a fixed generator polynomial (0x4C11DB7).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="CRC_UserDefinedPolynomial">CRC_UserDefinedPolynomial</p></td>
        <td align=left>
How to configure the CRC using the HAL API. The CRC (cyclic
redundancy check) calculation unit computes the 8-bit CRC code for a given
buffer of 32-bit data words, based on a user-defined generating polynomial.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="CRYP">CRYP</p></td>
        <td align=left><p id="CRYP_AESModes">CRYP_AESModes</p></td>
        <td align=left>
How to use the CRYP peripheral to encrypt and decrypt data using AES in chaining
modes (ECB, CBC, CTR).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="CRYP_DMA">CRYP_DMA</p></td>
        <td align=left>
How to use the AES1 peripheral to encrypt and decrypt data using AES 128 
Algorithm with ECB chaining mode in DMA mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=3><p id="Cortex">Cortex</p></td>
        <td align=left><p id="CORTEXM_MPU">CORTEXM_MPU</p></td>
        <td align=left>
Presentation of the MPU feature. This example configures a memory area as 
privileged read-only, and attempts to perform read and write operations in
different modes.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="CORTEXM_ModePrivilege">CORTEXM_ModePrivilege</p></td>
        <td align=left>
How to modify the Thread mode privilege access and stack. Thread mode is entered
on reset or when returning from an exception.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="CORTEXM_SysTick">CORTEXM_SysTick</p></td>
        <td align=left>  
How to use the default SysTick configuration with a 1 ms timebase to toggle LEDs.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=3><p id="DMA">DMA</p></td>
        <td align=left><p id="DMA_FLASHToRAM">DMA_FLASHToRAM</p></td>
        <td align=left>
How to use a DMA to transfer a word data buffer from Flash memory to embedded 
SRAM through the HAL API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="DMA_MUXSYNC">DMA_MUXSYNC</p></td>
        <td align=left>
How to use the DMA with the DMAMUX to synchronize a transfer with the LPTIM1
output signal. USART1 is used in DMA synchronized mode to send a countdown from
10 to 00, with a period of 2 seconds. 
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="DMA_MUX_RequestGen">DMA_MUX_RequestGen</p></td>
        <td align=left>
How to use the DMA with the DMAMUX request generator to generate DMA transfer
requests upon an External line 4 rising edge signal.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="FLASH">FLASH</p></td>
        <td align=left><p id="FLASH_EraseProgram">FLASH_EraseProgram</p></td>
        <td align=left>
How to configure and use the FLASH HAL API to erase and program the internal
Flash memory.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="FLASH_WriteProtection">FLASH_WriteProtection</p></td>
        <td align=left>
How to configure and use the FLASH HAL API to enable and disable the write
protection of the internal Flash memory.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="GPIO">GPIO</p></td>
        <td align=left><p id="GPIO_EXTI">GPIO_EXTI</p></td>
        <td align=left>
How to configure external interrupt lines.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="GPIO_IOToggle">GPIO_IOToggle</p></td>
        <td align=left>
How to configure and use GPIOs through the HAL API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=4><p id="HAL">HAL</p></td>
        <td align=left><p id="HAL_TimeBase">HAL_TimeBase</p></td>
        <td align=left>
How to customize HAL using a general-purpose timer as main source of time base, 
instead of Systick.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="HAL_TimeBase_RTC_ALARM">HAL_TimeBase_RTC_ALARM</p></td>
        <td align=left>
How to customize HAL using RTC alarm as main source of time base, 
instead of Systick.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="HAL_TimeBase_RTC_WKUP">HAL_TimeBase_RTC_WKUP</p></td>
        <td align=left>
How to customize HAL using RTC wakeup as main source of time base, 
instead of Systick.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="HAL_TimeBase_TIM">HAL_TimeBase_TIM</p></td>
        <td align=left>
How to customize HAL using a general-purpose timer as main source of time base 
instead of Systick.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="HSEM">HSEM</p></td>
        <td align=left><p id="HSEM_ProcessSync">HSEM_ProcessSync</p></td>
        <td align=left>
How to use a HW semaphore to synchronize 2 process.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="HSEM_ReadLock">HSEM_ReadLock</p></td>
        <td align=left>
How to enable, take then release semaphore using 2 different Process.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=7><p id="I2C">I2C</p></td>
        <td align=left><p id="I2C_TwoBoards_AdvComIT">I2C_TwoBoards_AdvComIT</p></td>
        <td align=left>
How to handle several I2C data buffer transmission/reception between
a master and a slave device, using an interrupt.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="I2C_TwoBoards_ComDMA">I2C_TwoBoards_ComDMA</p></td>
        <td align=left>
How to handle I2C data buffer transmission/reception between two boards, 
via DMA.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="I2C_TwoBoards_ComIT">I2C_TwoBoards_ComIT</p></td>
        <td align=left>
How to handle I2C data buffer transmission/reception between two boards, 
using an interrupt.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="I2C_TwoBoards_ComPolling">I2C_TwoBoards_ComPolling</p></td>
        <td align=left>
How to handle I2C data buffer transmission/reception between two boards, 
in polling mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="I2C_TwoBoards_RestartAdvComIT">I2C_TwoBoards_RestartAdvComIT</p></td>
        <td align=left>
How to perform multiple I2C data buffer transmission/reception between two boards, 
in interrupt mode and with restart condition.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="I2C_TwoBoards_RestartComIT">I2C_TwoBoards_RestartComIT</p></td>
        <td align=left>
How to handle single I2C data buffer transmission/reception between two boards, 
in interrupt mode and with restart condition.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="I2C_WakeUpFromStop">I2C_WakeUpFromStop</p></td>
        <td align=left>
How to handle I2C data buffer transmission/reception between two boards, 
using an interrupt when the device is in Stop mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="IWDG">IWDG</p></td>
        <td align=left><p id="IWDG_Reset">IWDG_Reset</p></td>
        <td align=left>
How to handle the IWDG reload counter and simulate a software fault that generates 
an MCU IWDG reset after a preset laps of time.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="IWDG_WindowMode">IWDG_WindowMode</p></td>
        <td align=left>
How to periodically update the IWDG reload counter and simulate a software fault that generates 
an MCU IWDG reset after a preset laps of time.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="LCD">LCD</p></td>
        <td align=left><p id="LCD_SegmentsDrive">LCD_SegmentsDrive</p></td>
        <td align=left>
How to drive a LCD Glass using STM32WBxx hal driver.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=4><p id="LPTIM">LPTIM</p></td>
        <td align=left><p id="LPTIM_PWMExternalClock">LPTIM_PWMExternalClock</p></td>
        <td align=left>
How to configure and use, through the HAL LPTIM API, the LPTIM peripheral using an external counter clock, 
to generate a PWM signal at the lowest power consumption.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="LPTIM_PWM_LSE">LPTIM_PWM_LSE</p></td>
        <td align=left>
How to configure and use, through the HAL LPTIM API, the LPTIM peripheral using LSE 
as counter clock, to generate a PWM signal, in a low-power mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="LPTIM_PulseCounter">LPTIM_PulseCounter</p></td>
        <td align=left>
How to configure and use, through the LPTIM HAL API, the LPTIM peripheral 
to count pulses.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="LPTIM_Timeout">LPTIM_Timeout</p></td>
        <td align=left>
How to implement, through the HAL LPTIM API, a timeout with the LPTIMER peripheral, to wake up 
the system from a low-power mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=12><p id="PKA">PKA</p></td>
        <td align=left><p id="PKA_ECCscalarMultiplication">PKA_ECCscalarMultiplication</p></td>
        <td align=left>
How to use the PKA peripheral to execute ECC scalar multiplication. This 
allows generating a public key from a private key.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PKA_ECCscalarMultiplication_IT">PKA_ECCscalarMultiplication_IT</p></td>
        <td align=left>
How to use the PKA peripheral to execute ECC scalar multiplication. This 
allows generating a public key from a private key in interrupt mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PKA_ECDSA_Sign">PKA_ECDSA_Sign</p></td>
        <td align=left>
How to compute a signed message regarding the Elliptic curve digital signature algorithm
(ECDSA).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PKA_ECDSA_Sign_IT">PKA_ECDSA_Sign_IT</p></td>
        <td align=left>
How to compute a signed message regarding the Elliptic curve digital signature algorithm
(ECDSA) in interrupt mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PKA_ECDSA_Verify">PKA_ECDSA_Verify</p></td>
        <td align=left>
How to determine if a given signature is valid regarding the Elliptic curve digital signature algorithm
(ECDSA).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PKA_ECDSA_Verify_IT">PKA_ECDSA_Verify_IT</p></td>
        <td align=left>
How to determine if a given signature is valid regarding the Elliptic curve digital signature algorithm
(ECDSA) in interrupt mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PKA_ModularExponentiation">PKA_ModularExponentiation</p></td>
        <td align=left>
How to use the PKA peripheral to execute modular exponentiation. This 
allows ciphering/deciphering a text.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PKA_ModularExponentiationCRT">PKA_ModularExponentiationCRT</p></td>
        <td align=left>
How to compute the Chinese Remainder Theorem (CRT) optimization.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PKA_ModularExponentiationCRT_IT">PKA_ModularExponentiationCRT_IT</p></td>
        <td align=left>
How to compute the Chinese Remainder Theorem (CRT) optimization in interrupt mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PKA_ModularExponentiation_IT">PKA_ModularExponentiation_IT</p></td>
        <td align=left>
How to use the PKA peripheral to execute modular exponentiation. This 
allows ciphering/deciphering a text in interrupt mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PKA_PointCheck">PKA_PointCheck</p></td>
        <td align=left>
How to use the PKA peripheral to determine if a point is on a curve. This 
allows validating an external public key.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PKA_PointCheck_IT">PKA_PointCheck_IT</p></td>
        <td align=left>
How to use the PKA peripheral to determine if a point is on a curve. This 
allows validating an external public key.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=5><p id="PWR">PWR</p></td>
        <td align=left><p id="PWR_LPRUN">PWR_LPRUN</p></td>
        <td align=left> 
How to enter and exit the Low-power run mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PWR_LPSLEEP">PWR_LPSLEEP</p></td>
        <td align=left>
How to enter the Low-power sleep mode and wake up from this mode by using 
an interrupt.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PWR_PVD">PWR_PVD</p></td>
        <td align=left>How to configure the programmable voltage detector by using an external interrupt 
line. External DC supply must be used to supply Vdd.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PWR_STANDBY_RTC">PWR_STANDBY_RTC</p></td>
        <td align=left>
How to enter the Standby mode and wake-up from this mode by using an external 
reset or the RTC wakeup timer.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PWR_STOP2_RTC">PWR_STOP2_RTC</p></td>
        <td align=left>
How to enter the Stop 2 mode and wake-up from this mode using an external reset 
or RTC wakeup timer.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=4><p id="QSPI">QSPI</p></td>
        <td align=left><p id="QSPI_ExecuteInPlace">QSPI_ExecuteInPlace</p></td>
        <td align=left>
How to execute a part of the code from the QSPI memory. To do this, 
a section is created where the function is stored.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="QSPI_MemoryMapped">QSPI_MemoryMapped</p></td>
        <td align=left>
How to erase part of the QSPI memory, write data in DMA mode
and access to QSPI memory in memory-mapped mode to check the data in a forever loop.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="QSPI_ReadWrite_DMA">QSPI_ReadWrite_DMA</p></td>
        <td align=left>
How to erase part of the QSPI memory, write data in DMA mode,
read data in DMA mode and compare the result in a forever loop.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="QSPI_ReadWrite_IT">QSPI_ReadWrite_IT</p></td>
        <td align=left>
How to erase part of the QSPI memory, write data in IT mode,
read data in IT mode and compare the result in a forever loop.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=3><p id="RCC">RCC</p></td>
        <td align=left><p id="RCC_CRS_Synchronization_IT">RCC_CRS_Synchronization_IT</p></td>
        <td align=left>
Configuration of the clock recovery service (CRS) in Interrupt mode, using the RCC HAL API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RCC_CRS_Synchronization_Polling">RCC_CRS_Synchronization_Polling</p></td>
        <td align=left>
Configuration of the clock recovery service (CRS) in Polling mode, using the RCC HAL API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RCC_ClockConfig">RCC_ClockConfig</p></td>
        <td align=left>
Configuration of the system clock (SYSCLK) and modification of the clock settings in Run mode, using the RCC HAL API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="RNG">RNG</p></td>
        <td align=left><p id="RNG_MultiRNG">RNG_MultiRNG</p></td>
        <td align=left>
Configuration of the RNG using the HAL API. This example uses the RNG to generate 32-bit long random numbers.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RNG_MultiRNG_IT">RNG_MultiRNG_IT</p></td>
        <td align=left>
Configuration of the RNG using the HAL API. This example uses RNG interrupts to generate 32-bit long random numbers.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=5><p id="RTC">RTC</p></td>
        <td align=left><p id="RTC_Alarm">RTC_Alarm</p></td>
        <td align=left>
Configuration and generation of an RTC alarm using the RTC HAL API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RTC_Calendar">RTC_Calendar</p></td>
        <td align=left>
Configuration of the calendar using the RTC HAL API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RTC_LSI">RTC_LSI</p></td>
        <td align=left>
Use of the LSI clock source autocalibration to get a precise RTC clock. 
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RTC_Tamper">RTC_Tamper</p></td>
        <td align=left>
Configuration of the RTC HAL API to write/read data to/from RTC Backup registers. 
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RTC_TimeStamp">RTC_TimeStamp</p></td>
        <td align=left>Configuration of the RTC HAL API to demonstrate the timestamp feature.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="SAI">SAI</p></td>
        <td align=left><p id="SAI_AudioPlay">SAI_AudioPlay</p></td>
        <td align=left>
Use of the SAI HAL API to play an audio file in DMA circular mode and handle the buffer update.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=6><p id="SPI">SPI</p></td>
        <td align=left><p id="SPI_FullDuplex_ComDMA_Master">SPI_FullDuplex_ComDMA_Master</p></td>
        <td align=left>
Data buffer transmission/reception between two boards via SPI using DMA.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="SPI_FullDuplex_ComDMA_Slave">SPI_FullDuplex_ComDMA_Slave</p></td>
        <td align=left>
Data buffer transmission/reception between two boards via SPI using DMA.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="SPI_FullDuplex_ComIT_Master">SPI_FullDuplex_ComIT_Master</p></td>
        <td align=left>
Data buffer transmission/reception between two boards via SPI using Interrupt mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="SPI_FullDuplex_ComIT_Slave">SPI_FullDuplex_ComIT_Slave</p></td>
        <td align=left>
Data buffer transmission/reception between two boards via SPI using Interrupt mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="SPI_FullDuplex_ComPolling_Master">SPI_FullDuplex_ComPolling_Master</p></td>
        <td align=left>
Data buffer transmission/reception between two boards via SPI using Polling mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="SPI_FullDuplex_ComPolling_Slave">SPI_FullDuplex_ComPolling_Slave</p></td>
        <td align=left>
Data buffer transmission/reception between two boards via SPI using Polling mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=9><p id="TIM">TIM</p></td>
        <td align=left><p id="TIM_DMA">TIM_DMA</p></td>
        <td align=left>
Use of the DMA with TIMER Update request 
to transfer data from memory to TIMER Capture Compare Register 3 (TIMx_CCR3).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="TIM_DMABurst">TIM_DMABurst</p></td>
        <td align=left>
How to update the TIMER channel 1 period and duty cycle using the TIMER DMA burst feature.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="TIM_OCActive">TIM_OCActive</p></td>
        <td align=left>
Configuration of the TIM peripheral in Output Compare Active mode 
(when the counter matches the capture/compare register, the corresponding output 
pin is set to its active state).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="TIM_OCInactive">TIM_OCInactive</p></td>
        <td align=left>
Configuration of the TIM peripheral in Output Compare Inactive mode 
with the corresponding Interrupt requests for each channel.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="TIM_OCToggle">TIM_OCToggle</p></td>
        <td align=left>
Configuration of the TIM peripheral to generate four different 
signals at four different frequencies.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="TIM_OnePulse">TIM_OnePulse</p></td>
        <td align=left>
Use of the TIM peripheral to generate a single pulse when 
an external signal rising edge is received on the timer input pin.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="TIM_PWMInput">TIM_PWMInput</p></td>
        <td align=left>
How to use the TIM peripheral to measure the frequency and 
duty cycle of an external signal.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="TIM_PWMOutput">TIM_PWMOutput</p></td>
        <td align=left>
This example shows how to configure the TIM peripheral in PWM (Pulse Width Modulation) 
mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="TIM_TimeBase">TIM_TimeBase</p></td>
        <td align=left>
This example shows how to configure the TIM peripheral to generate a time base of 
one second with the corresponding Interrupt request.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="TSC">TSC</p></td>
        <td align=left><p id="TSC_BasicAcquisition_Interrupt">TSC_BasicAcquisition_Interrupt</p></td>
        <td align=left>
Use of the TSC HAL API to perform continuous acquisitions of one channel in Interrupt mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=6><p id="UART">UART</p></td>
        <td align=left><p id="UART_HyperTerminal_DMA">UART_HyperTerminal_DMA</p></td>
        <td align=left>
UART transmission (transmit/receive) in DMA mode 
between a board and an HyperTerminal PC application.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="UART_HyperTerminal_IT">UART_HyperTerminal_IT</p></td>
        <td align=left>
UART transmission (transmit/receive) in Interrupt mode between a board and 
an HyperTerminal PC application.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="UART_Printf">UART_Printf</p></td>
        <td align=left>
Re-routing of the C library printf function to the UART.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="UART_TwoBoards_ComDMA">UART_TwoBoards_ComDMA</p></td>
        <td align=left>
UART transmission (transmit/receive) in DMA mode 
between two boards.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="UART_TwoBoards_ComIT">UART_TwoBoards_ComIT</p></td>
        <td align=left>
UART transmission (transmit/receive) in Interrupt mode 
between two boards.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="UART_TwoBoards_ComPolling">UART_TwoBoards_ComPolling</p></td>
        <td align=left>
UART transmission (transmit/receive) in Polling mode 
between two boards.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="WWDG">WWDG</p></td>
        <td align=left><p id="WWDG_Example">WWDG_Example</p></td>
        <td align=left>
Configuration of the HAL API to periodically update the WWDG counter and simulate a software fault that
generates an MCU WWDG reset when a predefined time period has elapsed.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;" align=center>
        <td colspan="3"><b>Total number of examples: 98</b></td>
        <td>1</td>
        <td>97</td>
      </tr>
      <tr align=center>
        <td style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;" rowspan=88><p id="Examples_LL">Examples_LL</p></td>
        <td align=left rowspan=11><p id="ADC">ADC</p></td>
        <td align=left><p id="ADC_AnalogWatchdog_Init">ADC_AnalogWatchdog_Init</p></td>
        <td align=left>
How to use an ADC peripheral with an ADC analog watchdog to monitor a channel 
and detect when the corresponding conversion data is outside the window 
thresholds.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="ADC_ContinuousConversion_TriggerSW">ADC_ContinuousConversion_TriggerSW</p></td>
        <td align=left>
How to use an ADC peripheral to perform continuous ADC conversions on a 
channel, from a software start.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="ADC_ContinuousConversion_TriggerSW_Init">ADC_ContinuousConversion_TriggerSW_Init</p></td>
        <td align=left>
How to use an ADC peripheral to perform continuous ADC conversions on a 
channel, from a software start.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="ADC_ContinuousConversion_TriggerSW_LowPower_Init">ADC_ContinuousConversion_TriggerSW_LowPower_Init</p></td>
        <td align=left>
How to use an ADC peripheral with ADC low-power features.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="ADC_GroupsRegularInjected_Init">ADC_GroupsRegularInjected_Init</p></td>
        <td align=left>
How to use an ADC peripheral with both ADC groups (regular and injected) 
in their intended use cases.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="ADC_Oversampling_Init">ADC_Oversampling_Init</p></td>
        <td align=left>
How to use an ADC peripheral with ADC oversampling.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="ADC_SingleConversion_TriggerSW_DMA_Init">ADC_SingleConversion_TriggerSW_DMA_Init</p></td>
        <td align=left>
How to use an ADC peripheral to perform a single ADC conversion on a channel, 
at each software start. This example uses the DMA programming model 
(for polling or interrupt programming models, refer to other examples).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="ADC_SingleConversion_TriggerSW_IT_Init">ADC_SingleConversion_TriggerSW_IT_Init</p></td>
        <td align=left>
How to use an ADC peripheral to perform a single ADC conversion on a channel, 
at each software start. This example uses the interrupt programming model 
(for polling or DMA programming models, please refer to other examples).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="ADC_SingleConversion_TriggerSW_Init">ADC_SingleConversion_TriggerSW_Init</p></td>
        <td align=left>
How to use an ADC peripheral to perform a single ADC conversion on a channel 
at each software start. This example uses the polling programming model (for 
interrupt or DMA programming models, please refer to other examples).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="ADC_SingleConversion_TriggerTimer_DMA_Init">ADC_SingleConversion_TriggerTimer_DMA_Init</p></td>
        <td align=left>
How to use an ADC peripheral to perform a single ADC conversion on a channel 
at each trigger event from a timer. Converted data is indefinitely transferred 
by DMA into a table (circular mode).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="ADC_TemperatureSensor">ADC_TemperatureSensor</p></td>
        <td align=left>
How to use an ADC peripheral to perform a single ADC conversion on the 
internal temperature sensor and calculate the temperature in degrees Celsius. 
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=4><p id="COMP">COMP</p></td>
        <td align=left><p id="COMP_CompareGpioVsVrefInt_IT">COMP_CompareGpioVsVrefInt_IT</p></td>
        <td align=left>
How to use a comparator peripheral to compare a voltage level applied on a GPIO
pin to the internal voltage reference (VREFINT), in interrupt mode. This example
is based on the STM32WBxx COMP LL API. The peripheral initialization
uses LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="COMP_CompareGpioVsVrefInt_IT_Init">COMP_CompareGpioVsVrefInt_IT_Init</p></td>
        <td align=left>
How to use a comparator peripheral to compare a voltage level applied on a GPIO
pin to the the internal voltage reference (VREFINT), in interrupt mode. This example
is based on the STM32WBxx COMP LL API. The peripheral initialization
uses the LL initialization function to demonstrate LL init usage.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="COMP_CompareGpioVsVrefInt_OutputGpio_Init">COMP_CompareGpioVsVrefInt_OutputGpio_Init</p></td>
        <td align=left>
How to use a comparator peripheral to compare a voltage level applied on a GPIO
pin to the internal voltage reference (VREFINT). The comparator output is connected
to a GPIO. This example is based on the STM32WBxx COMP LL API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="COMP_CompareGpioVsVrefInt_Window_IT_Init">COMP_CompareGpioVsVrefInt_Window_IT_Init</p></td>
        <td align=left>
How to use a pair of comparator peripherals to compare a voltage level applied on
a GPIO pin to two thresholds: the internal voltage reference (VREFINT) and a fraction
of the internal voltage reference (VREFINT/2), in interrupt mode. This example is
based on the STM32WBxx COMP LL API. The peripheral initialization
uses LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="CORTEX">CORTEX</p></td>
        <td align=left><p id="CORTEX_MPU">CORTEX_MPU</p></td>
        <td align=left>
Presentation of the MPU feature. This example configures a memory area as 
privileged read-only, and attempts to perform read and write operations in
different modes.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="CRC">CRC</p></td>
        <td align=left><p id="CRC_CalculateAndCheck">CRC_CalculateAndCheck</p></td>
        <td align=left>
How to configure the CRC calculation unit to compute a CRC code for a given data
buffer, based on a fixed generator polynomial (default value 0x4C11DB7). The
peripheral initialization is done using LL unitary service functions for
optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="CRC_UserDefinedPolynomial">CRC_UserDefinedPolynomial</p></td>
        <td align=left>
How to configure and use the CRC calculation unit to compute an 8-bit CRC code
for a given data buffer, based on a user-defined generating polynomial. The
peripheral initialization is done using LL unitary service functions for
optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="CRS">CRS</p></td>
        <td align=left><p id="CRS_Synchronization_IT">CRS_Synchronization_IT</p></td>
        <td align=left>
How to configure the clock recovery service in IT mode through the
STM32WBxx CRS LL API. The peripheral initialization uses LL unitary
service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="CRS_Synchronization_Polling">CRS_Synchronization_Polling</p></td>
        <td align=left>
How to configure the clock recovery service in polling mode through the
STM32WBxx CRS LL API. The peripheral initialization uses LL unitary
service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="DMA">DMA</p></td>
        <td align=left><p id="DMA_CopyFromFlashToMemory">DMA_CopyFromFlashToMemory</p></td>
        <td align=left>
How to use a DMA channel to transfer a word data buffer 
from Flash memory to embedded SRAM. The peripheral initialization uses 
LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="DMA_CopyFromFlashToMemory_Init">DMA_CopyFromFlashToMemory_Init</p></td>
        <td align=left>
How to use a DMA channel to transfer a word data buffer
from Flash memory to embedded SRAM. The peripheral initialization uses LL
initialization functions to demonstrate LL init usage.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="EXTI">EXTI</p></td>
        <td align=left><p id="EXTI_ToggleLedOnIT">EXTI_ToggleLedOnIT</p></td>
        <td align=left>
How to configure the EXTI and use GPIOs to toggle the user LEDs 
available on the board when a user button is pressed. It is based on the
STM32WBxx LL API. The peripheral initialization uses LL unitary service
functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="EXTI_ToggleLedOnIT_Init">EXTI_ToggleLedOnIT_Init</p></td>
        <td align=left>
This example describes how to configure the EXTI and use
GPIOs to toggle the user LEDs available on the board when
a user button is pressed. This example is based on the
STM32WBxx LL API. Peripheral initialization is done using LL
initialization function to demonstrate LL init usage.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="GPIO">GPIO</p></td>
        <td align=left><p id="GPIO_InfiniteLedToggling">GPIO_InfiniteLedToggling</p></td>
        <td align=left>
How to configure and use GPIOs to toggle the on-board user LEDs 
every 250 ms. This example is based on the STM32WBxx LL API. The peripheral 
is initialized with LL unitary service functions to optimize 
for performance and size.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="GPIO_InfiniteLedToggling_Init">GPIO_InfiniteLedToggling_Init</p></td>
        <td align=left>
How to configure and use GPIOs to toggle the on-board user LEDs 
every 250 ms. This example is based on the STM32WBxx LL API. The peripheral 
is initialized with LL initialization function to demonstrate LL init usage.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="HSEM">HSEM</p></td>
        <td align=left><p id="HSEM_DualProcess">HSEM_DualProcess</p></td>
        <td align=left>
How to use the low-layer HSEM API to initialize, lock, and unlock hardware 
semaphore in the context of two processes accessing the same resource.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="HSEM_DualProcess_IT">HSEM_DualProcess_IT</p></td>
        <td align=left>
How to use the low-layer HSEM API to initialize, lock, and unlock hardware 
semaphore in the context of two processes accessing the same resource.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=8><p id="I2C">I2C</p></td>
        <td align=left><p id="I2C_OneBoard_Communication_DMAAndIT_Init">I2C_OneBoard_Communication_DMAAndIT_Init</p></td>
        <td align=left>
How to transmit data bytes from an I2C master device using DMA mode
to an I2C slave device using interrupt mode. The peripheral is initialized with
LL unitary service functions to optimize for performance and size.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="I2C_OneBoard_Communication_IT">I2C_OneBoard_Communication_IT</p></td>
        <td align=left>
How to handle the reception of one data byte from an I2C slave device 
by an I2C master device. Both devices operate in interrupt mode. The peripheral is initialized 
with LL unitary service functions to  optimize for performance and size.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="I2C_OneBoard_Communication_PollingAndIT_Init">I2C_OneBoard_Communication_PollingAndIT_Init</p></td>
        <td align=left>
How to transmit data bytes from an I2C master device using polling mode
to an I2C slave device using interrupt mode. The peripheral is initialized
with LL unitary service functions to optimize for performance and size.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="I2C_TwoBoards_MasterRx_SlaveTx_IT_Init">I2C_TwoBoards_MasterRx_SlaveTx_IT_Init</p></td>
        <td align=left>
How to handle the reception of one data byte from an I2C slave device
by an I2C master device. Both devices operate in interrupt mode. The peripheral
is initialized with LL unitary service functions to optimize for performance
and size.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="I2C_TwoBoards_MasterTx_SlaveRx_DMA_Init">I2C_TwoBoards_MasterTx_SlaveRx_DMA_Init</p></td>
        <td align=left>
How to transmit data bytes from an I2C master device using DMA mode
to an I2C slave device using DMA mode. The peripheral is initialized
with LL unitary service functions to optimize for performance and size.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="I2C_TwoBoards_MasterTx_SlaveRx_Init">I2C_TwoBoards_MasterTx_SlaveRx_Init</p></td>
        <td align=left>
How to transmit data bytes from an I2C master device using polling mode
to an I2C slave device using interrupt mode. The peripheral is initialized
with LL unitary service functions to optimize for performance and size.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="I2C_TwoBoards_WakeUpFromStop2_IT_Init">I2C_TwoBoards_WakeUpFromStop2_IT_Init</p></td>
        <td align=left>
How to handle the reception of a data byte from an I2C slave device in
Stop 2 mode by an I2C master device, both using interrupt mode. The
peripheral is initialized with LL unitary service functions to optimize for
performance and size.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="I2C_TwoBoards_WakeUpFromStop_IT_Init">I2C_TwoBoards_WakeUpFromStop_IT_Init</p></td>
        <td align=left>
How to handle the reception of a data byte from an I2C slave device in
Stop 1 mode by an I2C master device, both using interrupt mode. The
peripheral is initialized with LL unitary service functions to optimize for
performance and size.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="IWDG">IWDG</p></td>
        <td align=left><p id="IWDG_RefreshUntilUserEvent_Init">IWDG_RefreshUntilUserEvent_Init</p></td>
        <td align=left>
How to configure the IWDG peripheral to ensure periodical counter update and 
generate an MCU IWDG reset when a User push-button (SW1) is pressed. The peripheral 
is initialized with LL unitary service functions to optimize 
for performance and size.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="LPTIM">LPTIM</p></td>
        <td align=left><p id="LPTIM_PulseCounter">LPTIM_PulseCounter</p></td>
        <td align=left>
How to use the LPTIM peripheral in counter mode to generate a PWM output signal 
and update its duty cycle. This example is based on the STM32WBxx
LPTIM LL API. The peripheral is initialized with LL unitary service 
functions to optimize for performance and size.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="LPTIM_PulseCounter_Init">LPTIM_PulseCounter_Init</p></td>
        <td align=left>
How to use the LPTIM peripheral in counter mode to generate a PWM output signal 
and update its duty cycle. This example is based on the STM32WBxx
LPTIM LL API. The peripheral is initialized with LL initialization 
function to demonstrate LL init usage.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="LPUART">LPUART</p></td>
        <td align=left><p id="LPUART_WakeUpFromStop2_Init">LPUART_WakeUpFromStop2_Init</p></td>
        <td align=left>  
Configuration of GPIO and LPUART peripherals to allow characters 
received on LPUART_RX pin to wake up the MCU from low-power mode. This example is based 
on the LPUART LL API. The peripheral initialization uses LL 
initialization function to demonstrate LL init usage.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="LPUART_WakeUpFromStop_Init">LPUART_WakeUpFromStop_Init</p></td>
        <td align=left>  
Configuration of GPIO and LPUART peripherals to allow characters 
received on LPUART_RX pin to wake up the MCU from low-power mode. This example is based 
on the LPUART LL API. The peripheral initialization uses LL 
initialization function to demonstrate LL init usage.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="PKA">PKA</p></td>
        <td align=left><p id="PKA_ECDSA_Sign">PKA_ECDSA_Sign</p></td>
        <td align=left>
How to use the low-layer PKA API to generate an ECDSA signature.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PKA_ModularExponentiation">PKA_ModularExponentiation</p></td>
        <td align=left>
How to use the low-layer PKA API to execute RSA modular exponentiation.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=3><p id="PWR">PWR</p></td>
        <td align=left><p id="PWR_EnterStandbyMode">PWR_EnterStandbyMode</p></td>
        <td align=left>
How to enter the Standby mode and wake up from this mode by using an external 
reset or a wakeup interrupt.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PWR_EnterStopMode">PWR_EnterStopMode</p></td>
        <td align=left>
How to enter the Stop 2 mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="PWR_OptimizedRunMode">PWR_OptimizedRunMode</p></td>
        <td align=left>
How to increase/decrease frequency and VCORE and how to enter/exit the
Low-power run mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=4><p id="RCC">RCC</p></td>
        <td align=left><p id="RCC_HWAutoMSICalibration">RCC_HWAutoMSICalibration</p></td>
        <td align=left>
Use of the MSI clock source hardware autocalibration and LSE clock (PLL mode) to obtain a precise MSI clock. 
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RCC_OutputSystemClockOnMCO">RCC_OutputSystemClockOnMCO</p></td>
        <td align=left>
Configuration of MCO pin (PA8) to output the system clock.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RCC_UseHSEasSystemClock">RCC_UseHSEasSystemClock</p></td>
        <td align=left>
Use of the RCC LL API to start the HSE and use it as system clock.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RCC_UseHSI_PLLasSystemClock">RCC_UseHSI_PLLasSystemClock</p></td>
        <td align=left>
Modification of the PLL parameters in run time.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="RNG">RNG</p></td>
        <td align=left><p id="RNG_GenerateRandomNumbers">RNG_GenerateRandomNumbers</p></td>
        <td align=left>
Configuration of the RNG to generate 32-bit long random numbers. The peripheral initialization uses LL unitary service
functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RNG_GenerateRandomNumbers_IT">RNG_GenerateRandomNumbers_IT</p></td>
        <td align=left>
Configuration of the RNG to generate 32-bit long random numbers using interrupts. The peripheral initialization uses LL unitary service
functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=6><p id="RTC">RTC</p></td>
        <td align=left><p id="RTC_Alarm">RTC_Alarm</p></td>
        <td align=left>
Configuration of the RTC LL API to configure and generate an alarm using the RTC peripheral. The peripheral initialization 
uses LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RTC_Alarm_Init">RTC_Alarm_Init</p></td>
        <td align=left>
Configuration of the RTC LL API to configure and generate an alarm using the RTC peripheral. The peripheral 
initialization uses the LL initialization function.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RTC_Calendar_Init">RTC_Calendar_Init</p></td>
        <td align=left>
Configuration of the LL API to set the RTC calendar. The peripheral initialization uses LL unitary service 
functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RTC_ExitStandbyWithWakeUpTimer_Init">RTC_ExitStandbyWithWakeUpTimer_Init</p></td>
        <td align=left>
Configuration of the RTC to wake up from Standby mode 
using the RTC Wakeup timer. The peripheral initialization uses LL unitary service 
functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RTC_Tamper_Init">RTC_Tamper_Init</p></td>
        <td align=left>
Configuration of the Tamper using the RTC LL API. The peripheral initialization 
uses LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="RTC_TimeStamp_Init">RTC_TimeStamp_Init</p></td>
        <td align=left>
Configuration of the Timestamp using the RTC LL API. The peripheral initialization 
uses LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=7><p id="SPI">SPI</p></td>
        <td align=left><p id="SPI_OneBoard_HalfDuplex_DMA">SPI_OneBoard_HalfDuplex_DMA</p></td>
        <td align=left>
Configuration of GPIO and SPI peripherals to transmit
bytes from an SPI Master device to an SPI Slave device in DMA mode. This example
is based on the STM32WBxx SPI LL API. The peripheral initialization uses 
LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="SPI_OneBoard_HalfDuplex_DMA_Init">SPI_OneBoard_HalfDuplex_DMA_Init</p></td>
        <td align=left>
Configuration of GPIO and SPI peripherals to transmit 
bytes from an SPI Master device to an SPI Slave device in DMA mode. This example
is based on the STM32WBxx SPI LL API. The peripheral initialization uses the 
LL initialization function to demonstrate LL init usage.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="SPI_OneBoard_HalfDuplex_IT_Init">SPI_OneBoard_HalfDuplex_IT_Init</p></td>
        <td align=left>
Configuration of GPIO and SPI peripherals to transmit bytes 
from an SPI Master device to an SPI Slave device in Interrupt mode. This example
is based on the STM32WBxx SPI LL API. The peripheral initialization uses 
LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="SPI_TwoBoards_FullDuplex_DMA_Master_Init">SPI_TwoBoards_FullDuplex_DMA_Master_Init</p></td>
        <td align=left>
Data buffer transmission and receptionvia SPI using DMA mode. This example is 
based on the STM32WBxx SPI LL API. The peripheral initialization uses 
LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="SPI_TwoBoards_FullDuplex_DMA_Slave_Init">SPI_TwoBoards_FullDuplex_DMA_Slave_Init</p></td>
        <td align=left>
Data buffer transmission and receptionvia SPI using DMA mode. This example is 
based on the STM32WBxx SPI LL API. The peripheral initialization uses 
LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="SPI_TwoBoards_FullDuplex_IT_Master_Init">SPI_TwoBoards_FullDuplex_IT_Master_Init</p></td>
        <td align=left>
Data buffer transmission and receptionvia SPI using Interrupt mode. This 
example is based on the STM32WBxx SPI LL API. The peripheral 
initialization uses LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="SPI_TwoBoards_FullDuplex_IT_Slave_Init">SPI_TwoBoards_FullDuplex_IT_Slave_Init</p></td>
        <td align=left>
Data buffer transmission and receptionvia SPI using Interrupt mode. This 
example is based on the STM32WBxx SPI LL API. The peripheral 
initialization uses LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=8><p id="TIM">TIM</p></td>
        <td align=left><p id="TIM_BreakAndDeadtime">TIM_BreakAndDeadtime</p></td>
        <td align=left>
Configuration of the TIM peripheral to
 generate three center-aligned PWM and complementary PWM signals,
 insert a defined deadtime value,
 use the break feature,
 and lock the break and dead-time configuration.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="TIM_DMA_Init">TIM_DMA_Init</p></td>
        <td align=left>
Use of the DMA with a timer update request 
to transfer data from memory to Timer Capture Compare Register 3 (TIMx_CCR3). This 
example is based on the STM32WBxx TIM LL API. The peripheral initialization 
uses LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="TIM_InputCapture_Init">TIM_InputCapture_Init</p></td>
        <td align=left>
Use of the TIM peripheral to measure a periodic signal frequency 
provided either by an external signal generator or by 
another timer instance. This example is based on the STM32WBxx TIM 
LL API. The peripheral initialization uses LL unitary service functions 
for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="TIM_OnePulse">TIM_OnePulse</p></td>
        <td align=left>
Configuration of a timer to generate a positive pulse in 
Output Compare mode with a length of tPULSE and after a delay of tDELAY. This example 
is based on the STM32WBxx TIM LL API. The peripheral initialization uses 
LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="TIM_OutputCompare_Init">TIM_OutputCompare_Init</p></td>
        <td align=left>
Configuration of the TIM peripheral to generate an output 
waveform in different output compare modes. This example is based on the 
STM32WBxx TIM LL API. The peripheral initialization uses 
LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="TIM_PWMOutput">TIM_PWMOutput</p></td>
        <td align=left>
Use of a timer peripheral to generate a 
PWM output signal and update the PWM duty cycle. This example is based on the 
STM32WBxx TIM LL API. The peripheral initialization uses 
LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="TIM_PWMOutput_Init">TIM_PWMOutput_Init</p></td>
        <td align=left>
Use of a timer peripheral to generate a 
PWM output signal and update the PWM duty cycle. This example is based on the 
STM32WBxx TIM LL API. The peripheral initialization uses 
LL initialization function to demonstrate LL Init.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="TIM_TimeBase_Init">TIM_TimeBase_Init</p></td>
        <td align=left>
Configuration of the TIM peripheral to generate a timebase. This 
example is based on the STM32WBxx TIM LL API. The peripheral initialization 
uses LL unitary service functions for optimization purposes (performance and size). 
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=12><p id="USART">USART</p></td>
        <td align=left><p id="USART_Communication_Rx_IT">USART_Communication_Rx_IT</p></td>
        <td align=left>
Configuration of GPIO and USART peripherals to receive characters 
from an HyperTerminal (PC) in Asynchronous mode using an interrupt. The peripheral initialization 
uses LL unitary service functions for optimization purposes (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="USART_Communication_Rx_IT_Continuous_Init">USART_Communication_Rx_IT_Continuous_Init</p></td>
        <td align=left>
This example shows how to configure GPIO and USART peripheral for continuously receiving characters
from HyperTerminal (PC) in Asynchronous mode using Interrupt mode. Peripheral initialization is 
done using LL unitary services functions for optimization purpose (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="USART_Communication_Rx_IT_Continuous_VCP_Init">USART_Communication_Rx_IT_Continuous_VCP_Init</p></td>
        <td align=left>
This example shows how to configure GPIO and USART peripheral for continuously receiving characters
from HyperTerminal (PC) in Asynchronous mode using Interrupt mode. Peripheral initialization is 
done using LL unitary services functions for optimization purpose (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="USART_Communication_Rx_IT_Init">USART_Communication_Rx_IT_Init</p></td>
        <td align=left>
This example shows how to configure GPIO and USART peripheral for receiving characters
from HyperTerminal (PC) in Asynchronous mode using Interrupt mode. Peripheral initialization is done
using LL initialization function to demonstrate LL init usage.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="USART_Communication_Rx_IT_VCP_Init">USART_Communication_Rx_IT_VCP_Init</p></td>
        <td align=left>
This example shows how to configure GPIO and USART peripheral for receiving characters
from HyperTerminal (PC) in Asynchronous mode using Interrupt mode. Peripheral initialization is done
using LL initialization function to demonstrate LL init usage.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="USART_Communication_TxRx_DMA_Init">USART_Communication_TxRx_DMA_Init</p></td>
        <td align=left>
This example shows how to configure GPIO and USART peripheral
to send characters asynchronously to/from an HyperTerminal (PC) in
DMA mode. This example is based on STM32WBxx USART LL API. Peripheral
initialization is done using LL unitary services functions for optimization
purpose (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="USART_Communication_Tx_IT_Init">USART_Communication_Tx_IT_Init</p></td>
        <td align=left>
This example shows how to configure GPIO and USART peripheral to send characters
asynchronously to HyperTerminal (PC) in Interrupt mode. This example is based on
STM32WBxx USART LL API. Peripheral initialization is done using LL unitary services
functions for optimization purpose (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="USART_Communication_Tx_IT_VCP_Init">USART_Communication_Tx_IT_VCP_Init</p></td>
        <td align=left>
This example shows how to configure GPIO and USART peripheral to send characters
asynchronously to HyperTerminal (PC) in Interrupt mode. This example is based on
STM32WBxx USART LL API. Peripheral initialization is done using LL unitary services
functions for optimization purpose (performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="USART_Communication_Tx_Init">USART_Communication_Tx_Init</p></td>
        <td align=left>
This example shows how to configure GPIO and USART peripherals to send characters 
asynchronously to an HyperTerminal (PC) in Polling mode. If the transfer could not
be completed within the allocated time, a timeout allows to exit from the sequence
with a Timeout error code. This example is based on STM32WBxx USART LL API. Peripheral
initialization is done using LL unitary services functions for optimization purpose
(performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="USART_Communication_Tx_VCP_Init">USART_Communication_Tx_VCP_Init</p></td>
        <td align=left>
This example shows how to configure GPIO and USART peripherals to send characters 
asynchronously to an HyperTerminal (PC) in Polling mode. If the transfer could not
be completed within the allocated time, a timeout allows to exit from the sequence
with a Timeout error code. This example is based on STM32WBxx USART LL API. Peripheral
initialization is done using LL unitary services functions for optimization purpose
(performance and size).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="USART_WakeUpFromStop1_Init">USART_WakeUpFromStop1_Init</p></td>
        <td align=left>  
Configuration of GPIO and USART1 peripherals to allow the characters received on USART_RX pin to wake up the MCU from low-power mode. 
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="USART_WakeUpFromStop_Init">USART_WakeUpFromStop_Init</p></td>
        <td align=left>  
Configuration of GPIO and USART1 peripherals to allow the characters received on USART_RX pin to wake up the MCU from low-power mode. 
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="UTILS">UTILS</p></td>
        <td align=left><p id="UTILS_ConfigureSystemClock">UTILS_ConfigureSystemClock</p></td>
        <td align=left>
Use of UTILS LL API to configure the system clock using PLL with HSI as source clock. 
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="UTILS_ReadDeviceInfo">UTILS_ReadDeviceInfo</p></td>
        <td align=left>
This example reads the UID, Device ID and Revision ID and saves 
them into a global information buffer.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;" align=center>
        <td colspan="3"><b>Total number of examples_ll: 87</b></td>
        <td>0</td>
        <td>87</td>
      </tr>
      <tr align=center>
        <td style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;" rowspan=10><p id="Examples_MIX">Examples_MIX</p></td>
        <td align=left rowspan=1><p id="ADC">ADC</p></td>
        <td align=left><p id="ADC_SingleConversion_TriggerSW_IT">ADC_SingleConversion_TriggerSW_IT</p></td>
        <td align=left>
How to use the ADC to perform a single ADC channel conversion at each 
software start. This example uses the interrupt programming model (for 
polling and DMA programming models, please refer to other examples). It is 
based on the STM32WBxx ADC HAL and LL API. The LL API is used 
for performance improvement.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="CRC">CRC</p></td>
        <td align=left><p id="CRC_PolynomialUpdate">CRC_PolynomialUpdate</p></td>
        <td align=left>
How to use the CRC peripheral through the STM32WBxx CRC HAL and LL API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="DMA">DMA</p></td>
        <td align=left><p id="DMA_FLASHToRAM">DMA_FLASHToRAM</p></td>
        <td align=left>
How to use a DMA to transfer a word data buffer from Flash memory to embedded
SRAM through the STM32WBxx DMA HAL and LL API. The LL API is used for 
performance improvement.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="I2C">I2C</p></td>
        <td align=left><p id="I2C_OneBoard_ComSlave7_10bits_IT">I2C_OneBoard_ComSlave7_10bits_IT</p></td>
        <td align=left>
How to perform I2C data buffer transmission/reception between 
one master and two slaves with different address sizes (7-bit or 10-bit). This example 
uses the STM32WBxx I2C HAL and LL API (LL API usage for performance improvement)
and an interrupt.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="SPI">SPI</p></td>
        <td align=left><p id="SPI_HalfDuplex_ComPollingIT_Master">SPI_HalfDuplex_ComPollingIT_Master</p></td>
        <td align=left>
Data buffer transmission/reception between 
two boards via SPI using Polling (LL driver) and Interrupt modes (HAL driver).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="SPI_HalfDuplex_ComPollingIT_Slave">SPI_HalfDuplex_ComPollingIT_Slave</p></td>
        <td align=left>
Data buffer transmission/reception between 
two boards via SPI using Polling (LL driver) and Interrupt modes (HAL driver).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="TIM">TIM</p></td>
        <td align=left><p id="TIM_PWMInput">TIM_PWMInput</p></td>
        <td align=left>
Use of the TIM peripheral to measure an external signal frequency and 
duty cycle.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=2><p id="UART">UART</p></td>
        <td align=left><p id="UART_HyperTerminal_IT">UART_HyperTerminal_IT</p></td>
        <td align=left>
Use of a UART to transmit data (transmit/receive)
between a board and an HyperTerminal PC application in Interrupt mode. This example
describes how to use the USART peripheral through the STM32WBxx UART HAL
and LL API, the LL API being used for performance improvement.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="UART_HyperTerminal_TxPolling_RxIT">UART_HyperTerminal_TxPolling_RxIT</p></td>
        <td align=left>
Use of a UART to transmit data (transmit/receive)
between a board and an HyperTerminal PC application both in Polling and Interrupt
modes. This example describes how to use the USART peripheral through
the STM32WBxx UART HAL and LL API, the LL API being used for performance improvement.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;" align=center>
        <td colspan="3"><b>Total number of examples_mix: 9</b></td>
        <td>0</td>
        <td>9</td>
      </tr>
      <tr align=center>
        <td style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;" rowspan=95><p id="Applications">Applications</p></td>
        <td align=left rowspan=26><p id="BLE">BLE</p></td>
        <td align=left><p id="BLE_Beacon">BLE_Beacon</p></td>
        <td align=left>
How to advertize 3 types of beacon ( tlm, uuid, url ).
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_BloodPressure">BLE_BloodPressure</p></td>
        <td align=left>
How to use the Blood Pressure profile as specified by the BLE SIG.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_CableReplacement">BLE_CableReplacement</p></td>
        <td align=left>
How to use the Point-to-Point communication using BLE component. 
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_Custom">BLE_Custom</p></td>
        <td align=left>
This example is to demonstrate that a BLE_Custom application can be created using CubeMX.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_DataThroughput">BLE_DataThroughput</p></td>
        <td align=left>
How to use data throughput via notification from server to client using BLE component.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_HealthThermometer">BLE_HealthThermometer</p></td>
        <td align=left>
How to use the Health Thermometer profile as specified by the BLE SIG.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_HeartRate">BLE_HeartRate</p></td>
        <td align=left>
How to use the Heart Rate profile as specified by the BLE SIG.
</td>
        <td><font size="5" color=green>X</font></td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_HeartRateFreeRTOS">BLE_HeartRateFreeRTOS</p></td>
        <td align=left>
How to use the Heart Rate profile as specified by the BLE SIG.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_HeartRateFreeRTOS_ANCS">BLE_HeartRateFreeRTOS_ANCS</p></td>
        <td align=left>
How to read notifications from Apple Notification Center Service (ANCS) as specified by Apple specification at:
https://developer.apple.com/library/archive/documentation/CoreBluetooth/Reference/AppleNotificationCenterServiceSpecification/
and also use the Heart Rate profile as specified by the BLE SIG.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_HeartRate_ANCS">BLE_HeartRate_ANCS</p></td>
        <td align=left>
How to read notifications from Apple Notification Center Service (ANCS) as specified by Apple specification at:
https://developer.apple.com/library/archive/documentation/CoreBluetooth/Reference/AppleNotificationCenterServiceSpecification/
and also use the Heart Rate profile as specified by the BLE SIG.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_HeartRate_ota">BLE_HeartRate_ota</p></td>
        <td align=left>
How to use the Heart Rate profile as specified by the BLE SIG.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_Hid">BLE_Hid</p></td>
        <td align=left>
How to use the Human Interface Device profile as specified by the BLE SIG.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_MeshLightingLPN">BLE_MeshLightingLPN</p></td>
        <td align=left>This is the implementation of the BLE Mesh Low Power Node profile as specified by the BLE SIG.
</td>
        <td><font size="5" color=green>X</font></td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_MeshLightingPRFNode">BLE_MeshLightingPRFNode</p></td>
        <td align=left>This is the implementation of the BLE Mesh Lighting profile as specified by the BLE SIG.
</td>
        <td><font size="5" color=green>X</font></td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_MeshLightingProvisioner">BLE_MeshLightingProvisioner</p></td>
        <td align=left>This is the implementation of the BLE Mesh Lighting profile as specified by the BLE SIG.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_MultiAppAt">BLE_MultiAppAt</p></td>
        <td align=left>
How to use multi BLE applications using a network processor architecture.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_Ota">BLE_Ota</p></td>
        <td align=left>
OTA implementation to download a new image into the user flash.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_Peripheral_Lite">BLE_Peripheral_Lite</p></td>
        <td align=left>
How to communicate with simple BLE peripheral with minimum activated features.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_Proximity">BLE_Proximity</p></td>
        <td align=left>
How to use the Proximity profile as specified by the BLE SIG.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_RfWithFlash">BLE_RfWithFlash</p></td>
        <td align=left>
This example is to demonstrate the capability to erase/write the flash while a Point-to-Point communication using BLE component is active. 
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_TransparentMode">BLE_TransparentMode</p></td>
        <td align=left>
How to communicate with the STM32CubeMonitor-RF Tool using the transparent mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_TransparentModeVCP">BLE_TransparentModeVCP</p></td>
        <td align=left>
How to communicate with the STM32CubeMonitor-RF Tool using the transparent mode.
</td>
        <td><font size="5" color=green>X</font></td>
        <td>-</td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_p2pClient">BLE_p2pClient</p></td>
        <td align=left>
This example is to demonstrate Point-to-Point communication using BLE component. 
</td>
        <td><font size="5" color=green>X</font></td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_p2pRouteur">BLE_p2pRouteur</p></td>
        <td align=left>This example is to demonstrate Multipoint communication using BLE component.
</td>
        <td><font size="5" color=green>X</font></td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_p2pServer">BLE_p2pServer</p></td>
        <td align=left>
This example is to demonstrate Point-to-Point communication using BLE component. 
</td>
        <td><font size="5" color=green>X</font></td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="BLE_p2pServer_ota">BLE_p2pServer_ota</p></td>
        <td align=left>
This example is to demonstrate Point-to-Point communication using BLE component. 
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="BLE_Thread">BLE_Thread</p></td>
        <td align=left><p id="Ble_Thread_Static">Ble_Thread_Static</p></td>
        <td align=left>
How to use BLE application and Thread application in static concurrent mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="BLE_Zigbee">BLE_Zigbee</p></td>
        <td align=left><p id="BLE_Zigbee_Static">BLE_Zigbee_Static</p></td>
        <td align=left>
How to use BLE application and Zigbee application in static concurrent mode.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="CKS">CKS</p></td>
        <td align=left><p id="CKS_Crypt">CKS_Crypt</p></td>
        <td align=left>
How to use CKS feature to store AES crypto keys in secure area.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="FatFs">FatFs</p></td>
        <td align=left><p id="FatFs_uSD_Standalone">FatFs_uSD_Standalone</p></td>
        <td align=left>
How to use STM32Cube firmware with FatFs middleware component as a generic FAT
file system module. This example develops an application that exploits FatFs
features to configure a microSD drive.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=9><p id="FreeRTOS">FreeRTOS</p></td>
        <td align=left><p id="FreeRTOS_Mail">FreeRTOS_Mail</p></td>
        <td align=left>
How to use mail queues with CMSIS RTOS API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="FreeRTOS_Mutexes">FreeRTOS_Mutexes</p></td>
        <td align=left>
How to use mutexes with CMSIS RTOS API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="FreeRTOS_Queues">FreeRTOS_Queues</p></td>
        <td align=left>
How to use message queues with CMSIS RTOS API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="FreeRTOS_Semaphore">FreeRTOS_Semaphore</p></td>
        <td align=left>
How to use semaphores with CMSIS RTOS API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="FreeRTOS_SemaphoreFromISR">FreeRTOS_SemaphoreFromISR</p></td>
        <td align=left>
How to use semaphore from ISR with CMSIS RTOS API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="FreeRTOS_Signal">FreeRTOS_Signal</p></td>
        <td align=left>
How to perform thread signaling using CMSIS RTOS API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="FreeRTOS_SignalFromISR">FreeRTOS_SignalFromISR</p></td>
        <td align=left>
This application shows the usage of CMSIS-OS Signal API from ISR context.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="FreeRTOS_ThreadCreation">FreeRTOS_ThreadCreation</p></td>
        <td align=left>
How to implement thread creation using CMSIS RTOS API. 
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="FreeRTOS_Timers">FreeRTOS_Timers</p></td>
        <td align=left>
How to use timers of CMSIS RTOS API.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=3><p id="LLD_BLE">LLD_BLE</p></td>
        <td align=left><p id="LLD_BLE_Chat">LLD_BLE_Chat</p></td>
        <td align=left>
This example is to communicate Over The Air (OTA) using LLD_BLE between 2 boards in BLE Radio format not BLE Stack protocol.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="LLD_BLE_Pressbutton">LLD_BLE_Pressbutton</p></td>
        <td align=left>
This example is to communicate Over The Air (OTA) using LLD_BLE between 2 boards (one send, other receive)
in BLE Radio format not BLE Stack protocol.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="LLD_BLE_Proximity">LLD_BLE_Proximity</p></td>
        <td align=left>
This example is to communicate Over The Air (OTA) using LLD_BLE between several boards in BLE Radio format not BLE Stack protocol. 
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=3><p id="Mac_802_15_4">Mac_802_15_4</p></td>
        <td align=left><p id="Mac_802_15_4_FFD">Mac_802_15_4_FFD</p></td>
        <td align=left>
How to use MAC 802.15.4 Association and Data exchange.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Mac_802_15_4_LPM_Periodic_Transmit">Mac_802_15_4_LPM_Periodic_Transmit</p></td>
        <td align=left>
How to use MAC 802.15.4 data transmission with STOP1 low power mode enabled.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Mac_802_15_4_RFD">Mac_802_15_4_RFD</p></td>
        <td align=left>
How to use MAC 802.15.4 Association and Data exchange.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=12><p id="Thread">Thread</p></td>
        <td align=left><p id="Thread_Cli_Cmd">Thread_Cli_Cmd</p></td>
        <td align=left>
How to control the Thread stack via Cli commands.
</td>
        <td><font size="5" color=green>X</font></td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Thread_Coap_DataTransfer">Thread_Coap_DataTransfer</p></td>
        <td align=left>
How to transfer large blocks of data through the CoAP messaging protocol.
</td>
        <td><font size="5" color=green>X</font></td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Thread_Coap_Generic">Thread_Coap_Generic</p></td>
        <td align=left>
How to build Thread application based on Coap messages.
</td>
        <td><font size="5" color=green>X</font></td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Thread_Coap_Generic_Ota">Thread_Coap_Generic_Ota</p></td>
        <td align=left>
How to build Thread application based on Coap messages.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Thread_Coap_MultiBoard">Thread_Coap_MultiBoard</p></td>
        <td align=left>
How to use Coap for sending message to multiple boards.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Thread_Commissioning">Thread_Commissioning</p></td>
        <td align=left>
How to use Thread commissioning process.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Thread_FTD_Coap_Multicast">Thread_FTD_Coap_Multicast</p></td>
        <td align=left>
How to exchange multicast Coap messages.
</td>
        <td><font size="5" color=green>X</font></td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Thread_Ota">Thread_Ota</p></td>
        <td align=left>
How to update Over The Air (OTA) FW application and Copro Wireless binary using Thread.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Thread_Ota_Server">Thread_Ota_Server</p></td>
        <td align=left>
How to update Over The Air (OTA) FW application and Copro Wireless binary using Thread.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Thread_SED_Coap_FreeRTOS">Thread_SED_Coap_FreeRTOS</p></td>
        <td align=left>
How to exchange a Coap message using the Thread protocol.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Thread_SED_Coap_Multicast">Thread_SED_Coap_Multicast</p></td>
        <td align=left>
How to exchange a Coap message using the Thread protocol.
</td>
        <td><font size="5" color=green>X</font></td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Thread_Udp">Thread_Udp</p></td>
        <td align=left>
How to transfer data using UDP.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=1><p id="TouchSensing">TouchSensing</p></td>
        <td align=left><p id="TouchSensing_1touchKey">TouchSensing_1touchKey</p></td>
        <td align=left>
Use of the STMTouch driver with 1 touchkey sensor.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=4><p id="USB_Device">USB_Device</p></td>
        <td align=left><p id="CDC_Standalone">CDC_Standalone</p></td>
        <td align=left>
This application describes how to use USB device application based on the Device
Communication Class (CDC) following the PSTN sub-protocol on the STM32WBxx devices.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="DFU_Standalone">DFU_Standalone</p></td>
        <td align=left>
Compliant implementation of the Device Firmware Upgrade (DFU).
</td>
        <td><font size="5" color=green>CubeMx</font></td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="HID_Standalone">HID_Standalone</p></td>
        <td align=left>
Use of the USB device application based on the Human Interface (HID).
</td>
        <td><font size="5" color=green>CubeMx</font></td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="MSC_Standalone">MSC_Standalone</p></td>
        <td align=left>
This application shows how to use the USB device application based on the Mass Storage Class (MSC) on the STM32WBxx devices.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr align=center>
        <td align=left rowspan=32><p id="Zigbee">Zigbee</p></td>
        <td align=left><p id="Zigbee_APS_Coord">Zigbee_APS_Coord</p></td>
        <td align=left>
How to use the APS layer in an application with a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_APS_Router">Zigbee_APS_Router</p></td>
        <td align=left>
How to use the APS layer in an application with a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_Commissioning_Client_Coord">Zigbee_Commissioning_Client_Coord</p></td>
        <td align=left>
How to use Commissioning cluster as a client on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_Commissioning_Server_Router">Zigbee_Commissioning_Server_Router</p></td>
        <td align=left>
How to use Commissioning cluster as a client on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_DevTemp_Client_Router">Zigbee_DevTemp_Client_Router</p></td>
        <td align=left>
How to use DevTemp cluster on a Centralized Zigbee network with device acting as router.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_DevTemp_Server_Coord">Zigbee_DevTemp_Server_Coord</p></td>
        <td align=left>
How to use DevTemp cluster on a Centralized Zigbee network with device acting as server.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_Diagnostic_Client_Router">Zigbee_Diagnostic_Client_Router</p></td>
        <td align=left>
How to use Diagnostic cluster as a client on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_Diagnostic_Server_Coord">Zigbee_Diagnostic_Server_Coord</p></td>
        <td align=left>
How to use Diagnostic cluster as a server on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_DoorLock_Client_Router">Zigbee_DoorLock_Client_Router</p></td>
        <td align=left>
How to use Door Lock cluster as a client on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_DoorLock_Server_Coord">Zigbee_DoorLock_Server_Coord</p></td>
        <td align=left>
How to use Door Lock cluster as a client on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_IAS_WD_Client_Router">Zigbee_IAS_WD_Client_Router</p></td>
        <td align=left>
How to use IAS WD cluster as a client on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_IAS_WD_Server_Coord">Zigbee_IAS_WD_Server_Coord</p></td>
        <td align=left>
How to use IAS WD cluster as a server on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_MeterId_Client_Router">Zigbee_MeterId_Client_Router</p></td>
        <td align=left>
How to use Meter Identification cluster as a client on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_MeterId_Server_Coord">Zigbee_MeterId_Server_Coord</p></td>
        <td align=left>
How to use Meter Identification cluster as a server on a centralized Zigbee network.
</td>
        <td><font size="5" color=green>X</font></td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_OTA_Client_Router">Zigbee_OTA_Client_Router</p></td>
        <td align=left>
How to use OTA cluster as a client on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_OTA_Server_Coord">Zigbee_OTA_Server_Coord</p></td>
        <td align=left>
How to use OTA cluster as a server on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_OnOff_Client_Distrib">Zigbee_OnOff_Client_Distrib</p></td>
        <td align=left>
How to use OnOff cluster as a client on a distributed Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_OnOff_Client_Router">Zigbee_OnOff_Client_Router</p></td>
        <td align=left>
How to use OnOff cluster as a client on a centralized Zigbee network.
</td>
        <td><font size="5" color=green>X</font></td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_OnOff_Client_Router_Ota">Zigbee_OnOff_Client_Router_Ota</p></td>
        <td align=left>
How to use OnOff cluster as a client on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_OnOff_Client_SED">Zigbee_OnOff_Client_SED</p></td>
        <td align=left>
How to use OnOff cluster as a client on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_OnOff_Coord_NVM">Zigbee_OnOff_Coord_NVM</p></td>
        <td align=left>
How to use OnOff cluster with persistent data on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_OnOff_Router_NVM">Zigbee_OnOff_Router_NVM</p></td>
        <td align=left>
How to use OnOff cluster and the persistent data on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_OnOff_Server_Coord">Zigbee_OnOff_Server_Coord</p></td>
        <td align=left>
How to use OnOff cluster as a server on a centralized Zigbee network.
</td>
        <td><font size="5" color=green>X</font></td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_OnOff_Server_Distrib">Zigbee_OnOff_Server_Distrib</p></td>
        <td align=left>
How to use OnOff cluster as a server on a distributed Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_PollControl_Client_Coord">Zigbee_PollControl_Client_Coord</p></td>
        <td align=left>
How to use Poll Control cluster as a client on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_PollControl_Server_SED">Zigbee_PollControl_Server_SED</p></td>
        <td align=left>
How to use Poll Control cluster as a server on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_PowerProfile_Client_Coord">Zigbee_PowerProfile_Client_Coord</p></td>
        <td align=left>
How to use Power Profile cluster as a client on a centralized Zigbee network.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_PowerProfile_Server_Router">Zigbee_PowerProfile_Server_Router</p></td>
        <td align=left>
How to use Power Profile cluster as a server on a centralized Zigbee network.
</td>
        <td><font size="5" color=green>X</font></td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_PressMeas_Client_Router">Zigbee_PressMeas_Client_Router</p></td>
        <td align=left>
How to use PressMeas cluster on a Centralized Zigbee network with device acting as router.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_PressMeas_Server_Coord">Zigbee_PressMeas_Server_Coord</p></td>
        <td align=left>
How to use Pressure Measurement cluster on a Centralized Zigbee network with device acting as server.
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_SE_Msg_Client_Coord">Zigbee_SE_Msg_Client_Coord</p></td>
        <td align=left>
How to use SE Messaging cluster on a Centralized Zigbee network with device acting as coordinator (Client).
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr align=center>
        <td align=left><p id="Zigbee_SE_Msg_Server_Router">Zigbee_SE_Msg_Server_Router</p></td>
        <td align=left>
How to use SE Messaging cluster on a Centralized Zigbee network with device acting as router (Server).
</td>
        <td>-</td>
        <td><font size="5" color=green>X</font></td>
      </tr>
      <tr style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;" align=center>
        <td colspan="3"><b>Total number of applications: 111</b></td>
        <td>18</td>
        <td>93</td>
      </tr>
      <tr align=center>
        <td style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;" rowspan=2><p id="Demonstrations">Demonstrations</p></td>
        <td align=left rowspan=1><p id="-">-</p></td>
        <td align=left><p id="Adafruit_LCD_1_8_SD_Joystick">Adafruit_LCD_1_8_SD_Joystick</p></td>
        <td align=left>
This demonstration firmware is based on STM32Cube. It helps you to discover STM32
Cortex-M devices that can be plugged on a STM32 Nucleo board.
</td>
        <td>-</td>
        <td><font size="5" color=green>CubeMx</font></td>
      </tr>
      <tr style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;" align=center>
        <td colspan="3"><b>Total number of demonstrations: 1</b></td>
        <td>0</td>
        <td>1</td>
      </tr>
      <tr style="background-repeat: no-repeat;background-position: right center;background-color: #39A9DC;color: #FFF;" align=center>
      	<td colspan="4"><b>Total number of projects: 308</b></td>
      	<td>19</td>
      	<td>289</td>
      </tr>
    </table>
  </body>
</html>