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

Release_Notes.html - github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06eeb1e88b3a923743ff4230a7268e7daba46b04 (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
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
  <meta charset="utf-8" />
  <meta name="generator" content="pandoc" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
  <title>Release Notes for STM32CubeWB Firmware Package</title>
  <style type="text/css">
      code{white-space: pre-wrap;}
      span.smallcaps{font-variant: small-caps;}
      span.underline{text-decoration: underline;}
      div.column{display: inline-block; vertical-align: top; width: 50%;}
  </style>
  <link rel="stylesheet" href="_htmresc/mini-st.css" />
  <!--[if lt IE 9]>
    <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
  <![endif]-->
</head>
<body>
<div class="row">
<div class="col-sm-12 col-lg-4">
<div class="card fluid">
<div class="sectione dark">
<center>
<h1 id="release-notes-for-stm32cubewb-firmware-package"><small>Release Notes for</small> STM32CubeWB Firmware Package</h1>
<p>Copyright © 2019 STMicroelectronics<br />
</p>
<a href="https://www.st.com" class="logo"><img src="_htmresc/st_logo.png" alt="ST logo" /></a>
</center>
</div>
</div>
<h1 id="license">License</h1>
<p>This software package is licensed by ST under ST license SLA0048, the “License”; You may not use this package except in compliance with the License. You may obtain a copy of the License at:</p>
<p><a href="http://www.st.com/SLA0048">http://www.st.com/SLA0048</a></p>
<h1 id="purpose">Purpose</h1>
<p><strong>STM32Cube is an STMicroelectronics original initiative to ease developers life by reducing development efforts, time and cost.</mark></strong></p>
<p>STM32Cube covers STM32 portfolio.</p>
<p>STM32Cube Version 1.x includes:</p>
<ul>
<li>The STM32CubeMX, a graphical software configuration tool that allows to generate C initialization code using graphical wizards.</li>
<li>A comprehensive embedded software platform, delivered per series (such as STM32CubeWB for STM32WB series)
<ul>
<li>The STM32Cube HAL, an STM32 abstraction layer embedded software, ensuring maximized portability across STM32 portfolio</li>
<li>A consistent set of middleware components such as RTOS, USB, TCP/IP, Graphics, STM32WPAN</li>
</ul></li>
</ul>
<p>All embedded software utilities come with a full set of examples.</p>
<p>The STM32Cube firmware solution offers a straightforward API with a modular architecture, making it simple to fine tune custom applications and scalable to fit most requirements.</p>
<figure>
<img src="_htmresc/STM32Cube.bmp" alt="STM32Cube" /><figcaption>STM32Cube</figcaption>
</figure>
<p>The HAL (Hardware Abstraction Layer) &amp; LL (Low Layers) drivers provided within this package supports the following STM32WBxx product:</p>
<ul>
<li>STM32WB55xx</li>
<li>STM32WB50xx</li>
<li>STM32WB35xx</li>
<li>STM32WB30xx</li>
</ul>
<p>The HAL and LL drivers provided within this package are compliant with MISRA-C®:2012 guidelines, and have been reviewed with a static analysis tool to eliminate possible run-time errors. Reports are available on demand.</p>
<p>For quick getting started with the STM32CubeWB firmware package, refer to UM2550 and you can download firmware updates and all the latest documentation from www.st.com/stm32cubefw</p>
<p>Here is the list of references to user documents:</p>
<ul>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00597487.pdf">UM2550</a> : Getting started with STM32CubeWB for STM32WBxx Series.</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00524025.pdf">UM2442</a> : Description of STM32WB HAL and low-layer drivers.</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/DM00598033.pdf">AN5289</a> : Building wireless applications with STM32WB Series microcontrollers</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/DM00600575.pdf">AN5292</a> : How to build a Bluetooth® Low Energy mesh application for STM32WBx5 microcontrollers</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/DM00492814.pdf">AN5155</a> : STM32Cube MCU Package examples for STM32WB Series</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00105259.pdf">UM1721</a> : Developing Applications on STM32Cube with FatFs.</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00105262.pdf">UM1722</a> : Developing Applications on STM32Cube with RTOS.</li>
</ul>
</div>
<div class="col-sm-12 col-lg-8">
<h1 id="update-history">Update History</h1>
<div class="collapse">
<input type="checkbox" id="collapse-section9" checked aria-hidden="true"> <label for="collapse-section9" aria-hidden="true">V1.7.0 / 11-May-2020</label>
<div>
<h2 id="main-changes">Main Changes</h2>
<h3 id="correct-install-address-for-stm32wb5x_thread_ftd_fw.bin">Correct install address for stm32wb5x_Thread_FTD_fw.bin</h3>
<h2 id="contents">Contents</h2>
<h3 id="projects">Projects</h3>
<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>
<p>The exhaustive list of projects and their short description is provided in this table (<a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>).</p>
<ul>
<li><strong>P-NUCLEO-WB55.Nucleo</strong> (<a href="Projects/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a>)</li>
<li><strong>P-NUCLEO-WB55.USBDongle</strong> (<a href="Projects/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a>)</li>
<li><strong>NUCLEO-WB35CE</strong> (<a href="Projects/NUCLEO-WB35CE/Release_Notes.html">release notes</a>) (<a href="Projects/NUCLEO-WB35CE/Applications/BLE/BLE_p2pClient/readme.txt">default application</a>)</li>
</ul>
<h3 id="components">Components</h3>
<table>
<caption>STM32WB5x Firmware Upgrade Services Binary</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_FUS_fw_1_0_2.bin</td>
<td style="text-align: left;">V1.0.2</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_FUS_fw.bin</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>STM32WB5x Coprocessor Wireless Binaries</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Stack_full_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Stack_light_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Thread_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Zigbee_FFD_static_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td style="text-align: left;">v1.1.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Thread_FTD_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Thread_MTD_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Zigbee_FFD_Full_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Zigbee_RFD_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>STM32WB3x Coprocessor Wireless Binaries</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_BLE_Stack_full_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_BLE_Stack_light_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_Thread_FTD_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_Thread_MTD_fw.bin</td>
<td style="text-align: left;">v1.6.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td>V5.4.0</td>
<td><a href="Drivers/CMSIS/LICENSE.txt">Apache License 2.0</a></td>
<td><a href="Drivers/CMSIS/README.md">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32WB CMSIS</td>
<td>V1.4.0</td>
<td><a href="Drivers/CMSIS/LICENSE.txt">Apache License 2.0</a></td>
<td><a href="Drivers/CMSIS/Device/ST/STM32WBxx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32WBxx_HAL_Driver</td>
<td>V1.5.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/STM32WBxx_HAL_Driver/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">P-NUCLEO-WB55.USBDongle</td>
<td>V1.0.1</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">P-NUCLEO-WB55.Nucleo</td>
<td>V1.0.1</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">NUCLEO-WB35CE</td>
<td>V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/NUCLEO-WB35CE/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Adafruit Shield</td>
<td>V3.0.3</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Adafruit_Shield/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Common</td>
<td>V5.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/Common/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP st7735</td>
<td>V1.1.2</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/st7735/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32 USB Device Library</td>
<td style="text-align: left;">V2.5.3</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_USB_Device_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32 WPAN</td>
<td style="text-align: left;"><strong>V1.6.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_WPAN/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FatFS</td>
<td style="text-align: left;">R0.12c</td>
<td><a href="Middlewares/Third_Party/FatFs/doc/en/appnote.html#license">FatFs License</a></td>
<td><a href="Middlewares/Third_Party/FatFs/doc/updates.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20191011</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FatFs/src/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FreeRTOS</td>
<td style="text-align: left;">V10.2.1</td>
<td><a href="Middlewares/Third_Party/FreeRTOS/License/license.txt">MIT</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/readme.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20191213</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32_TouchSensing_Library</td>
<td style="text-align: left;">V2.2.4</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_TouchSensing_Library/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Utilities</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CPU</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/CPU/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Fonts</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Fonts/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Log</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Log/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">conf</td>
<td style="text-align: left;">V1.3.1</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/conf/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">lpm</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/lpm/tiny_lpm/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sequencer</td>
<td style="text-align: left;">V1.2.1</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/sequencer/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations">Known Limitations</h2>
<ul>
<li>With the ability to change the Coprocessor Wireless Binaries Over The Air (OTA), it is possible to switch from one binary to another. Only, the following case is not possible due to available memory size:
<ul>
<li>Moving from stm32wb5x_BLE_Stack_fw.bin to stm32wb5x_BLE_Thread_fw.bin</li>
</ul></li>
</ul>
<h2 id="development-toolchains-and-compilers">Development Toolchains and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.20.2 + ST-Link</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.25 + ST-Link</li>
<li>System Workbench for STM32 (SW4STM32) toolchain V2.7 + ST-Link</li>
<li>STM32CubeIDE toolchain V1.2.0 + ST-Link</li>
</ul>
<h2 id="supported-devices-and-boards">Supported Devices and boards</h2>
<ul>
<li>STM32WB55xx, STM32WB50xx, STM32WB35xx and STM32WB30xx devices.</li>
<li>P-NUCLEO-WB55 kit composed of P-NUCLEO-WB55.Nucleo and P-NUCLEO-WB55.USBDongle</li>
<li>NUCLEO-WB35CE board.</li>
</ul>
<h2 id="dependencies">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li>STM32WB_Copro_Wireless_Binaries available under Projects/STM32WB_Copro_Wireless_Binaries</li>
</ul>
<p>Several applications (BLE (Bluetooth low energy), Thread or Mac 802-15-4) are available under:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications</li>
</ul>
<p>All of them are provided in source code and some of them are also available in binary format directly for ready to use usage:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications/xxx/Binary/<projectName>.hex</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications/xxx/Binary/<projectName>.hex</li>
<li>Projects/NUCLEO-WB35CE/Applications/xxx/Binary/<projectName>.hex</li>
</ul>
<p>Each of them require a different coprocessor binary in order to behave correctly. This is documented inside each readme.txt of those applications.</p>
<p>You can refer to the <a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note for STM32WB5x</a> or <a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note for STM32WB3x</a> of the binaries for a detailed explanation on how to use and how to flash them.</p>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section8"  aria-hidden="true"> <label for="collapse-section8" aria-hidden="true">V1.6.0 / 3-April-2020</label>
<div>
<h2 id="main-changes-1">Main Changes</h2>
<h3 id="add-the-support-of-several-additional-zigbee-clusters">Add the support of several additional Zigbee clusters</h3>
<ul>
<li><strong>Zigbee</strong>
<ul>
<li>You can refer to <a href="Middlewares/ST/STM32_WPAN/zigbee/STM32WB_ZigbeeGettingStarted.pdf">STM32WB_ZigbeeGettingStarted.pdf</a> for a quick overview of Zigbee on STM32WB.</li>
<li><strong>The package now supports the following cluster list (47 clusters)</strong>
<ul>
<li>Alarms</li>
<li>Ballast Configuration</li>
<li>Basic</li>
<li>Color control</li>
<li>Commissioning</li>
<li>Dehumidification Control</li>
<li>Demand Response and Load Control</li>
<li>Device Temperature Configuration</li>
<li>Diagnostics</li>
<li>Door Lock</li>
<li>Electrical Measurement</li>
<li>Fan Control</li>
<li>Green Power Proxy</li>
<li>Groups</li>
<li>IAS Ancillary Control Equipment (ACE)</li>
<li>IAS Warning Device (WD)</li>
<li>IAS Zone</li>
<li>Identify6</li>
<li>Illuminance Level Sensing</li>
<li>Illuminance Measurement</li>
<li>Key Establishment</li>
<li>Level Control</li>
<li>Messaging</li>
<li>Meter Identification</li>
<li>Metering</li>
<li>Nearest Gateway Cluster</li>
<li>OTA Upgrade</li>
<li>Occupancy Sensing</li>
<li>On/Off</li>
<li>On/Off Switch Configuration</li>
<li>Poll Control</li>
<li>Power Configuration</li>
<li>Power Profile Cluster</li>
<li>Pressure Measurement</li>
<li>Price</li>
<li>Pump Configuration and Control</li>
<li>RSSI Location</li>
<li>Relative Humidity Measurement</li>
<li>Scenes</li>
<li>Smart Energy Tunneling (Complex Metering)</li>
<li>Temperature Measurement</li>
<li>Thermostat</li>
<li>Thermostat User Interface Configuration</li>
<li>Time</li>
<li>Touchlink</li>
<li>Voice Over ZigBee</li>
<li>Window Covering</li>
</ul></li>
<li><strong>3 wireless stacks are available</strong>
<ul>
<li>stm32wb5x_Zigbee_FFD_Full_fw.bin (Full Function Device)</li>
<li>stm32wb5x_Zigbee_RFD_fw.bin (new, Reduced Function Device to be used for End Device Zigbee role)</li>
<li>stm32wb5x_BLE_Zigbee_FFD_static_fw.bin (Static Concurrent Mode BLE (Full BLE Stack 5.0) and Zigbee (FFD))</li>
</ul></li>
<li><strong>To demonstrate those clusters, several new applications are available</strong>
<ul>
<li>Zigbee_Commissioning_Client_Coord (Commissioning cluster)</li>
<li>Zigbee_Commissioning_Server_Router (Commissioning cluster)</li>
<li>Zigbee_Diagnostic_Client_Router (Diagnostics cluster)</li>
<li>Zigbee_Diagnostic_Server_Coord (Diagnostics cluster)</li>
<li>Zigbee_DoorLock_Client_Router (Door Lock cluster)</li>
<li>Zigbee_DoorLock_Server_Coord (Door Lock cluster)</li>
<li>Zigbee_IAS_WD_Client_Router (IAS Warning Device cluster)</li>
<li>Zigbee_IAS_WD_Server_Coord (IAS Warning Device cluster)</li>
<li>Zigbee_PollControl_Client_Coord (Poll Control cluster)</li>
<li>Zigbee_PollControl_Server_SED (Poll Control cluster)</li>
<li>(<a href="Projects/STM32CubeProjectsList.html">Complete list</a>)</li>
</ul></li>
</ul></li>
<li><p><strong>BLE</strong></p>
<ul>
<li>BLE stack update to fix vulnerability referenced as CVE-2019-19192</li>
</ul></li>
<li><p><strong>BLE-Mesh</strong></p>
<ul>
<li><strong>Split the BLE_MeshLightingDemo project in two</strong>
<ul>
<li>BLE_MeshLightingLPN (Low Power Node)</li>
<li>BLE_MeshLightingPRFNode (Proxy Relay Friend Node)</li>
</ul></li>
<li><strong>BLE-Mesh library version 1.12.007</strong>
<ul>
<li>Updated for Delta level set binding to Light lightness</li>
<li>Multi Key updates.</li>
<li>Correction of FSM issues in the LC Model: no way to consume a packet internally.</li>
<li>Correction of Sensor_LC_Light_Publish sending wrong property (and LC Model handling wrong property).</li>
<li>Updates on Generic Models for Certification tests: Generic OnOff, Level, Power OnOff, Transition Time<br />
</li>
<li>Update Multi elements support</li>
<li>Changes for DYNAMIC_PROVISIONER in Provisioner project</li>
</ul></li>
</ul></li>
</ul>
<h2 id="contents-1">Contents</h2>
<h3 id="projects-1">Projects</h3>
<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>
<p>The exhaustive list of projects and their short description is provided in this table (<a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>).</p>
<ul>
<li><strong>P-NUCLEO-WB55.Nucleo</strong> (<a href="Projects/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a>)</li>
<li><strong>P-NUCLEO-WB55.USBDongle</strong> (<a href="Projects/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a>)</li>
<li><strong>NUCLEO-WB35CE</strong> (<a href="Projects/NUCLEO-WB35CE/Release_Notes.html">release notes</a>) (<a href="Projects/NUCLEO-WB35CE/Applications/BLE/BLE_p2pClient/readme.txt">default application</a>)</li>
</ul>
<h3 id="components-1">Components</h3>
<table>
<caption>STM32WB5x Firmware Upgrade Services Binary</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_FUS_fw_1_0_2.bin</td>
<td style="text-align: left;">V1.0.2</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_FUS_fw.bin</td>
<td style="text-align: left;"><strong>V1.1.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>STM32WB5x Coprocessor Wireless Binaries</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Stack_full_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Stack_light_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Thread_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Zigbee_FFD_static_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td style="text-align: left;">v1.1.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Thread_FTD_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Thread_MTD_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Zigbee_FFD_Full_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Zigbee_RFD_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>STM32WB3x Coprocessor Wireless Binaries</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_BLE_Stack_full_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_BLE_Stack_light_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_Thread_FTD_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_Thread_MTD_fw.bin</td>
<td style="text-align: left;"><strong>v1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td>V5.4.0</td>
<td><a href="Drivers/CMSIS/LICENSE.txt">Apache License 2.0</a></td>
<td><a href="Drivers/CMSIS/README.md">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32WB CMSIS</td>
<td>V1.4.0</td>
<td><a href="Drivers/CMSIS/LICENSE.txt">Apache License 2.0</a></td>
<td><a href="Drivers/CMSIS/Device/ST/STM32WBxx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32WBxx_HAL_Driver</td>
<td>V1.5.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/STM32WBxx_HAL_Driver/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">P-NUCLEO-WB55.USBDongle</td>
<td>V1.0.1</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">P-NUCLEO-WB55.Nucleo</td>
<td>V1.0.1</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">NUCLEO-WB35CE</td>
<td>V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/NUCLEO-WB35CE/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Adafruit Shield</td>
<td>V3.0.3</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Adafruit_Shield/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Common</td>
<td>V5.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/Common/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP st7735</td>
<td>V1.1.2</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/st7735/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32 USB Device Library</td>
<td style="text-align: left;">V2.5.3</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_USB_Device_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32 WPAN</td>
<td style="text-align: left;"><strong>V1.6.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_WPAN/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FatFS</td>
<td style="text-align: left;">R0.12c</td>
<td><a href="Middlewares/Third_Party/FatFs/doc/en/appnote.html#license">FatFs License</a></td>
<td><a href="Middlewares/Third_Party/FatFs/doc/updates.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20191011</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FatFs/src/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FreeRTOS</td>
<td style="text-align: left;">V10.2.1</td>
<td><a href="Middlewares/Third_Party/FreeRTOS/License/license.txt">MIT</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/readme.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20191213</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32_TouchSensing_Library</td>
<td style="text-align: left;">V2.2.4</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_TouchSensing_Library/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Utilities</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CPU</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/CPU/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Fonts</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Fonts/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Log</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Log/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">conf</td>
<td style="text-align: left;">V1.3.1</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/conf/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">lpm</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/lpm/tiny_lpm/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sequencer</td>
<td style="text-align: left;">V1.2.1</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/sequencer/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations-1">Known Limitations</h2>
<ul>
<li>With the ability to change the Coprocessor Wireless Binaries Over The Air (OTA), it is possible to switch from one binary to another. Only, the following case is not possible due to available memory size:
<ul>
<li>Moving from stm32wb5x_BLE_Stack_fw.bin to stm32wb5x_BLE_Thread_fw.bin</li>
</ul></li>
</ul>
<h2 id="development-toolchains-and-compilers-1">Development Toolchains and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.20.2 + ST-Link</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.25 + ST-Link</li>
<li>System Workbench for STM32 (SW4STM32) toolchain V2.7 + ST-Link</li>
<li>STM32CubeIDE toolchain V1.2.0 + ST-Link</li>
</ul>
<h2 id="supported-devices-and-boards-1">Supported Devices and boards</h2>
<ul>
<li>STM32WB55xx, STM32WB50xx, STM32WB35xx and STM32WB30xx devices.</li>
<li>P-NUCLEO-WB55 kit composed of P-NUCLEO-WB55.Nucleo and P-NUCLEO-WB55.USBDongle</li>
<li>NUCLEO-WB35CE board.</li>
</ul>
<h2 id="dependencies-1">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li>STM32WB_Copro_Wireless_Binaries available under Projects/STM32WB_Copro_Wireless_Binaries</li>
</ul>
<p>Several applications (BLE (Bluetooth low energy), Thread or Mac 802-15-4) are available under:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications</li>
</ul>
<p>All of them are provided in source code and some of them are also available in binary format directly for ready to use usage:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications/xxx/Binary/<projectName>.hex</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications/xxx/Binary/<projectName>.hex</li>
<li>Projects/NUCLEO-WB35CE/Applications/xxx/Binary/<projectName>.hex</li>
</ul>
<p>Each of them require a different coprocessor binary in order to behave correctly. This is documented inside each readme.txt of those applications.</p>
<p>You can refer to the <a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note for STM32WB5x</a> or <a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note for STM32WB3x</a> of the binaries for a detailed explanation on how to use and how to flash them.</p>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section7"  aria-hidden="true"> <label for="collapse-section7" aria-hidden="true">V1.5.0 / 14-February-2020</label>
<div>
<h2 id="main-changes-2">Main Changes</h2>
<h3 id="introduction-of-stm32wb5mxx-stm32wb35xx-stm32wb30xx-product-and-blezigbee-static-concurrent-mode">Introduction of STM32WB5Mxx, STM32WB35xx, STM32WB30xx product and BLE/Zigbee static concurrent mode</h3>
<ul>
<li><strong>STM32WB35xx</strong>:
<ul>
<li><strong>Introduction of the STM32WB35xx and STM32WB30xx product</strong></li>
<li>Add support inside CMSIS device under stm32wb35xx.h and stm32wb30xx.h.</li>
<li>This product can be used by enabling inside your project the define STM32WB35xx.</li>
<li>Add <strong>BLE wireless stack</strong>
<ul>
<li>The detailed usage is provided under <a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></li>
<li>stm32wb3x_BLE_Stack_full_fw.bin
<ul>
<li>Full BLE Stack 5.0 certified : Link Layer, HCI, L2CAP, ATT, SM, GAP and GATT database</li>
</ul></li>
<li>stm32wb3x_BLE_Stack_light_fw.bin
<ul>
<li>BLE Stack witch reduced features</li>
<li>Refer to <a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a> for the details.</li>
</ul></li>
<li>stm32wb3x_BLE_HCILayer_fw.bin
<ul>
<li>HCI Layer only mode 5.0 certified : Link Layer, HCI</li>
</ul></li>
</ul></li>
<li>Add <strong>HAL and LL support</strong> of STM32WB35xx.
<ul>
<li>The new I2S peripheral is introduced and provided inside stm32wbxx_hal_i2s.c.</li>
</ul></li>
<li>Several applications are provided under Projects\NUCLEO-WB35CE to demonstrate the capabilities of the product.
<ul>
<li>Examples to demonstrate the capabilities of the peripherals, both in HAL, LL and a mix usage of HAL and LL.</li>
<li>Applications to demonstrate the integration of FreeRTOS and FatFs.</li>
<li>Applications to demonstrate the usage of the USB device.</li>
<li>BLE applications:
<ul>
<li>BLE_HeartRate</li>
<li>BLE_HeartRate_ota</li>
<li>BLE_HeartRateFreeRTOS</li>
<li>BLE_Ota</li>
<li>BLE_p2pClient</li>
<li>BLE_p2pServer</li>
<li>BLE_p2pServer_ota</li>
<li>BLE_TransparentMode</li>
</ul></li>
</ul></li>
<li>Support of <strong>Thread stack</strong> on STM32WB35 in FFD and RFD configurations
<ul>
<li>stm32wb3x_Thread_FTD_fw.bin
<ul>
<li>Full Thread Device</li>
</ul></li>
<li>stm32wb3x_Thread_MTD_fw.bin
<ul>
<li>Minimal Thread Device</li>
</ul></li>
</ul></li>
<li>Support of the standalone <strong>MAC_802_15_4 protocol</strong> on STM32WB35
<ul>
<li>stm32wb3x_Mac_802_15_4_fw.bin
<ul>
<li>MAC API is based on latest official <a href="http://grouper.ieee.org/groups/802/15/pub/Download.html">IEEE Std 802.15.4-2011</a></li>
<li>Support of <strong>low power on MAC_802_15_4 standalone</strong> protocol</li>
</ul></li>
<li>Support of <strong>External PA on all 802_15_4</strong> supported protocol stacks</li>
</ul></li>
<li>Introduction of <strong>STM32CubeIDE, an all-in-one multi-OS development tool</strong>, which is part of the STM32Cube software ecosystem.
<ul>
<li>The STM32CubeIDE file for all STM32WB35xx examples are provided ready to use.</li>
</ul></li>
</ul></li>
<li><strong>STM32WB55xx</strong>:
<ul>
<li><strong>Zigbee</strong>
<ul>
<li>This new release <strong>supports the following clusters</strong>:
<ul>
<li>Basic</li>
<li>Device Temperature Configuration,</li>
<li>Identify,</li>
<li>On/Off,</li>
<li>Power Profile,</li>
<li>Thermostat-UI-Config,</li>
<li>Ballast-Configuration,</li>
<li>Illuminance-Measurement,</li>
<li>Temperature Measurement,</li>
<li>Pressure Measurement,</li>
<li>Occupancy-Sensing,</li>
<li>Messaging</li>
<li>Meter Identification</li>
</ul></li>
<li>Several applications are provided under Projects\P-NUCLEO-WB55.Nucleo\Applications\Zigbee to <strong>ilustrate the use of those clusters</strong>:
<ul>
<li>Zigbee_DevTemp_Server_Coord</li>
<li>Zigbee_DevTemp_Client_Router</li>
<li>Zigbee_PressMeas_Server_Coord</li>
<li>Zigbee_PressMeas_Client_Router</li>
<li>Zigbee_SE_Msg_Client_Coord</li>
<li>Zigbee_SE_Msg_Server_Router</li>
</ul></li>
<li>Those application requires the usage of the <strong>stm32wb5x_Zigbee_FFD_Full_fw.bin</strong> (refer to <a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a>)</li>
</ul></li>
<li><strong>Add BLE/Zigbee static concurrent mode support</strong>
<ul>
<li>A new application BLE_Zigbee_Static is provided under Projects\P-NUCLEO-WB55.Nucleo\Applications\BLE_Zigbee\BLE_Zigbee_Static.</li>
<li>This application requires the usage of the <strong>stm32wb5x_BLE_Zigbee_FFD_static_fw.bin</strong> (refer to <a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a>)</li>
</ul></li>
</ul></li>
<li><strong>STM32WB5Mxx</strong>:
<ul>
<li>Introduce the support od STM32WB5Mxx inside the cmsis device, the HAL and the LL library.</li>
</ul></li>
</ul>
<h2 id="contents-2">Contents</h2>
<h3 id="projects-2">Projects</h3>
<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>
<p>The exhaustive list of projects and their short description is provided in this table (<a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>).</p>
<ul>
<li><strong>P-NUCLEO-WB55.Nucleo</strong> (<a href="Projects/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a>)</li>
<li><strong>P-NUCLEO-WB55.USBDongle</strong> (<a href="Projects/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a>)</li>
<li><strong>NUCLEO-WB35CE</strong> (<a href="Projects/NUCLEO-WB35CE/Release_Notes.html">release notes</a>) (<a href="Projects/NUCLEO-WB35CE/Applications/BLE/BLE_p2pClient/readme.txt">default application</a>)</li>
</ul>
<h3 id="components-2">Components</h3>
<table>
<caption>STM32WB5x Firmware Upgrade Services Binary</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_FUS_fw.bin</td>
<td style="text-align: left;">V1.0.2</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>STM32WB5x Coprocessor Wireless Binaries</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Stack_full_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Stack_light_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Thread_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Zigbee_FFD_static_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Thread_FTD_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Thread_MTD_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Zigbee_FFD_Full_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>STM32WB3x Coprocessor Wireless Binaries</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_BLE_Stack_full_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_BLE_Stack_light_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_Thread_FTD_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_Thread_MTD_fw.bin</td>
<td style="text-align: left;"><strong>v1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td>V5.4.0</td>
<td><a href="Drivers/CMSIS/LICENSE.txt">Apache License 2.0</a></td>
<td><a href="Drivers/CMSIS/README.md">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32WB CMSIS</td>
<td><strong>V1.4.0</strong></td>
<td><a href="Drivers/CMSIS/LICENSE.txt">Apache License 2.0</a></td>
<td><a href="Drivers/CMSIS/Device/ST/STM32WBxx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32WBxx_HAL_Driver</td>
<td><strong>V1.5.0</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/STM32WBxx_HAL_Driver/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">P-NUCLEO-WB55.USBDongle</td>
<td><strong>V1.0.1</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">P-NUCLEO-WB55.Nucleo</td>
<td><strong>V1.0.1</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">NUCLEO-WB35CE</td>
<td><strong>V1.0.0</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/NUCLEO-WB35CE/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Adafruit Shield</td>
<td>V3.0.3</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Adafruit_Shield/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Common</td>
<td>V5.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/Common/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP st7735</td>
<td>V1.1.2</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/st7735/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32 USB Device Library</td>
<td style="text-align: left;">V2.5.3</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_USB_Device_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32 WPAN</td>
<td style="text-align: left;"><strong>V1.5.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_WPAN/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FatFS</td>
<td style="text-align: left;">R0.12c</td>
<td><a href="Middlewares/Third_Party/FatFs/doc/en/appnote.html#license">FatFs License</a></td>
<td><a href="Middlewares/Third_Party/FatFs/doc/updates.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;"><strong>ST modified 20191011</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FatFs/src/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FreeRTOS</td>
<td style="text-align: left;"><strong>V10.2.1</strong></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/License/license.txt">MIT</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/readme.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20191213</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32_TouchSensing_Library</td>
<td style="text-align: left;"><strong>V2.2.4</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_TouchSensing_Library/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Utilities</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CPU</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/CPU/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Fonts</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Fonts/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Log</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Log/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">conf</td>
<td style="text-align: left;"><strong>V1.3.1</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/conf/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">lpm</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/lpm/tiny_lpm/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sequencer</td>
<td style="text-align: left;"><strong>V1.2.1</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/sequencer/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations-2">Known Limitations</h2>
<ul>
<li>With the ability to change the Coprocessor Wireless Binaries Over The Air (OTA), it is possible to switch from one binary to another. Only, the following case is not possible due to available memory size:
<ul>
<li>Moving from stm32wb5x_BLE_Stack_fw.bin to stm32wb5x_BLE_Thread_fw.bin</li>
</ul></li>
<li>The example RCC/RCC_ClockConfig encounter a hard fault after few keypressed. This will be corrected inside the next release.</li>
</ul>
<h2 id="development-toolchains-and-compilers-2">Development Toolchains and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.20.2 + ST-Link</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.25 + ST-Link</li>
<li>System Workbench for STM32 (SW4STM32) toolchain V2.7 + ST-Link</li>
<li>STM32CubeIDE toolchain V1.2.0 + ST-Link</li>
</ul>
<h2 id="supported-devices-and-boards-2">Supported Devices and boards</h2>
<ul>
<li>STM32WB55xx, STM32WB50xx, STM32WB35xx and STM32WB30xx devices.</li>
<li>P-NUCLEO-WB55 kit composed of P-NUCLEO-WB55.Nucleo and P-NUCLEO-WB55.USBDongle</li>
<li>NUCLEO-WB35CE board.</li>
</ul>
<h2 id="dependencies-2">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li>STM32WB_Copro_Wireless_Binaries available under Projects/STM32WB_Copro_Wireless_Binaries</li>
</ul>
<p>Several applications (BLE (Bluetooth low energy), Thread or Mac 802-15-4) are available under:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications</li>
</ul>
<p>All of them are provided in source code and some of them are also available in binary format directly for ready to use usage:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications/xxx/Binary/<projectName>.hex</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications/xxx/Binary/<projectName>.hex</li>
<li>Projects/NUCLEO-WB35CE/Applications/xxx/Binary/<projectName>.hex</li>
</ul>
<p>Each of them require a different coprocessor binary in order to behave correctly. This is documented inside each readme.txt of those applications.</p>
<p>You can refer to the <a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note for STM32WB5x</a> or <a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note for STM32WB3x</a> of the binaries for a detailed explanation on how to use and how to flash them.</p>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section6"  aria-hidden="true"> <label for="collapse-section6" aria-hidden="true">V1.4.0 / 06-December-2019</label>
<div>
<h2 id="main-changes-3">Main Changes</h2>
<h3 id="maintenance-release">Maintenance Release</h3>
<ul>
<li><strong>BLE</strong>:
<ul>
<li>Add new application under “Projects\P-NUCLEO-WB55.Nucleo\Applications\BLE\BLE_Peripheral_Lite”:
<ul>
<li>BLE_Peripheral_Lite: STM32WB simplified application without Sequencer, Low Power Manager and Timer Server.</li>
</ul></li>
</ul></li>
<li><strong>Zigbee</strong>:
<ul>
<li>Simplify the existing Zigbee OnOff Cluster applications for P-NUCLEO-WB55.Nucleo.</li>
<li>Add 2 new applications available under P-NUCLEO-WB55.USBDongle:
<ul>
<li>Zigbee_OnOff_Client_Router: How to use OnOff cluster as a Client on a centralized Zigbee network.</li>
<li>Zigbee_OnOff_Server_Coord: How to use OnOff cluster as a Server on a centralized Zigbee network.</li>
</ul></li>
</ul></li>
<li><strong>MAC 802.15.4</strong>:
<ul>
<li>MAC examples now ported on MDK-ARM and SW4STM32 IDEs.</li>
</ul></li>
<li>Maintenance release for HAL and LL drivers.</li>
</ul>
<h2 id="contents-3">Contents</h2>
<h3 id="projects-3">Projects</h3>
<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>
<p>The exhaustive list of projects and their short description is provided in this table (<a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>).</p>
<ul>
<li><strong>P-NUCLEO-WB55.Nucleo</strong> (<a href="Projects/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a>) (<a href="Projects/P-NUCLEO-WB55.Nucleo/Applications/BLE/BLE_p2pServer/readme.txt">default application</a>)</li>
<li><strong>P-NUCLEO-WB55.USBDongle</strong> (<a href="Projects/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a>) (<a href="Projects/P-NUCLEO-WB55.USBDongle/Applications/BLE/BLE_p2pClient/readme.txt">default application</a>)</li>
</ul>
<h3 id="components-3">Components</h3>
<table>
<caption>Firmware Upgrade Services Binary</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_FUS_fw.bin</td>
<td style="text-align: left;">V1.0.2</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Coprocessor Wireless Binaries</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;"><strong>v1.4.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Stack_fw.bin</td>
<td style="text-align: left;"><strong>v1.4.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Thread_fw.bin</td>
<td style="text-align: left;"><strong>v1.4.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>v1.4.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td style="text-align: left;">v1.1.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Thread_FTD_fw.bin</td>
<td style="text-align: left;"><strong>v1.4.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Thread_MTD_fw.bin</td>
<td style="text-align: left;"><strong>v1.4.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Zigbee_FFD_Full_fw.bin</td>
<td style="text-align: left;"><strong>v1.4.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td>V5.4.0</td>
<td><a href="Drivers/CMSIS/LICENSE.txt">Apache License 2.0</a></td>
<td><a href="Drivers/CMSIS/README.md">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32WB CMSIS</td>
<td>V1.3.0</td>
<td><a href="Drivers/CMSIS/LICENSE.txt">Apache License 2.0</a></td>
<td><a href="Drivers/CMSIS/Device/ST/STM32WBxx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32WBxx_HAL_Driver</td>
<td><strong>V1.4.0</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/STM32WBxx_HAL_Driver/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">P-NUCLEO-WB55.USBDongle</td>
<td>V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">P-NUCLEO-WB55.Nucleo</td>
<td>V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Adafruit Shield</td>
<td>V3.0.3</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Adafruit_Shield/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Common</td>
<td>V5.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/Common/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP st7735</td>
<td>V1.1.2</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/st7735/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32 USB Device Library</td>
<td style="text-align: left;">V2.5.3</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_USB_Device_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32 WPAN</td>
<td style="text-align: left;"><strong>V1.4.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_WPAN/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FatFS</td>
<td style="text-align: left;">R0.12c</td>
<td><a href="Middlewares/Third_Party/FatFs/doc/en/appnote.html#license">FatFs License</a></td>
<td><a href="Middlewares/Third_Party/FatFs/doc/updates.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20190329</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FatFs/src/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FreeRTOS</td>
<td style="text-align: left;">V10.0.1</td>
<td><a href="Middlewares/Third_Party/FreeRTOS/License/license.txt">MIT</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/readme.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20190329</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32_TouchSensing_Library</td>
<td style="text-align: left;">V2.2.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_TouchSensing_Library/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Utilities</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CPU</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/CPU/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Fonts</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Fonts/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Log</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Log/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">conf</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/conf/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">lpm</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/lpm/tiny_lpm/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sequencer</td>
<td style="text-align: left;">V1.2.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/sequencer/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations-3">Known Limitations</h2>
<ul>
<li>With the ability to change the Coprocessor Wireless Binaries Over The Air (OTA), it is possible to switch from one binary to another. Only, the following case is not possible due to available memory size:
<ul>
<li>Moving from stm32wb5x_BLE_Stack_fw.bin to stm32wb5x_BLE_Thread_fw.bin</li>
</ul></li>
<li>BLE_MeshLightingDemo application is not functionnal under Linux platform.</li>
</ul>
<h2 id="development-toolchains-and-compilers-3">Development Toolchains and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.20.2 + ST-Link</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.25 + ST-Link</li>
<li>System Workbench for STM32 (SW4STM32) toolchain V2.7 + ST-Link</li>
</ul>
<h2 id="supported-devices-and-boards-3">Supported Devices and boards</h2>
<ul>
<li>STM32WB55xx and STM32WB50xx devices</li>
<li>P-NUCLEO-WB55 kit composed of P-NUCLEO-WB55.Nucleo and P-NUCLEO-WB55.USBDongle</li>
</ul>
<h2 id="dependencies-3">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li>STM32WB_Copro_Wireless_Binaries available under Projects/STM32WB_Copro_Wireless_Binaries</li>
</ul>
<p>Several applications (BLE (Bluetooth low energy), Thread or Mac 802-15-4) are available under:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications</li>
</ul>
<p>All of them are provided in source code and some of them are also available in binary format directly for ready to use usage:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications/xxx/Binary/<projectName>.hex</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications/xxx/Binary/<projectName>.hex</li>
</ul>
<p>Each of them require a different coprocessor binary in order to behave correctly. This is documented inside each readme.txt of those applications.</p>
<p>You can refer to the <a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a> of the binaries for a detailed explanation on how to use and how to flash them.</p>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section5" aria-hidden="true"> <label for="collapse-section5" aria-hidden="true">V1.3.0 / 11-September-2019</label>
<div>
<h2 id="main-changes-4">Main Changes</h2>
<h3 id="introduction-of-zigbee-support">Introduction of ZIGBEE support</h3>
<p>STM32WB ecosystem keeps growing, now with the introduction of ZigBee protocol support as <strong>certified compliant platform</strong>, running on <strong>certified 802.15.4 2015 LLD MAC and PHY</strong>.</p>
<p>The wireless stack is based on <strong>ZigBee pro 2017, R22 release version</strong> in order to propose a ZigBee 3.0 solution. First ON/OFF cluster is coming in this STM32CubeWB Firmware Package delivery release.</p>
<p><em>More clusters with examples will be introduced with further STM32CubeWB Firmware Package release.</em></p>
<ul>
<li><strong>Zigbee Compliant Platform certified</strong> and 3 associated applications linked to OnOff cluster:
<ul>
<li>Zigbee_OnOff_Coord: <em>How to use OnOff cluster on a Centralized Zigbee network with device acting as coordinator.</em></li>
<li>Zigbee_OnOff_Distrib: <em>How to use OnOff cluster on a Distributed Zigbee network.</em></li>
<li>Zigbee_OnOff_Router: <em>How to use OnOff cluster on a Centralized Zigbee network with device acting as router.</em></li>
<li>They are added under “Projects\P-NUCLEO-WB55.Nucleo\Applications\Zigbee”</li>
</ul></li>
<li><strong>Certified 802.15.4 MAC</strong> and compliancy with Zigbee.</li>
<li>Thread secured FOTA for both wireless stack and user application. Supports 3 new applications:
<ul>
<li>Thread_Ota</li>
<li>Thread_Ota_Server</li>
<li>Thread_Coap_Generic_Ota</li>
</ul></li>
<li>BLE stack and application improvements:
<ul>
<li><strong>Support Flash erase during RF activity from Application side</strong></li>
<li>Support new Application : BLE_MultiAppAt - STM32WB Network processor via AT Instruction<br />
</li>
</ul></li>
<li>Integration of BLE Mesh library v1.10.004</li>
<li>Maintenance release for CMSIS, HAL and LL drivers.</li>
</ul>
<h2 id="contents-4">Contents</h2>
<h3 id="projects-4">Projects</h3>
<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>
<p>The exhaustive list of projects and their short description is provided in this table (<a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>).</p>
<ul>
<li><strong>P-NUCLEO-WB55.Nucleo</strong> (<a href="Projects/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a>) (<a href="Projects/P-NUCLEO-WB55.Nucleo/Applications/BLE/BLE_p2pServer/readme.txt">default application</a>)</li>
<li><strong>P-NUCLEO-WB55.USBDongle</strong> (<a href="Projects/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a>) (<a href="Projects/P-NUCLEO-WB55.USBDongle/Applications/BLE/BLE_p2pClient/readme.txt">default application</a>)</li>
</ul>
<h3 id="components-4">Components</h3>
<table>
<caption>Firmware Upgrade Services Binary</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_FUS_fw.bin</td>
<td style="text-align: left;">V1.0.2</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Coprocessor Wireless Binaries</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Stack_fw.bin</td>
<td style="text-align: left;"><strong>v1.3.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;"><strong>v1.3.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Thread_FTD_fw.bin</td>
<td style="text-align: left;"><strong>v1.3.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Thread_MTD_fw.bin</td>
<td style="text-align: left;"><strong>v1.3.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Thread_fw.bin</td>
<td style="text-align: left;"><strong>v1.3.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>v1.3.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td style="text-align: left;">v1.1.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td>V5.4.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/CMSIS/index.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32WB CMSIS</td>
<td><strong>V1.3.0</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/CMSIS/Device/ST/STM32WBxx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32WBxx_HAL_Driver</td>
<td><strong>V1.3.0</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/STM32WBxx_HAL_Driver/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">P-NUCLEO-WB55.USBDongle</td>
<td>V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">P-NUCLEO-WB55.Nucleo</td>
<td>V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Adafruit Shield</td>
<td>V3.0.3</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Adafruit_Shield/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Common</td>
<td>V5.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/Common/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP st7735</td>
<td>V1.1.2</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/st7735/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32 USB Device Library</td>
<td style="text-align: left;">V2.5.3</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_USB_Device_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32 WPAN</td>
<td style="text-align: left;"><strong>V1.3.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_WPAN/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FatFS</td>
<td style="text-align: left;">R0.12c</td>
<td><a href="Middlewares/Third_Party/FatFs/doc/en/appnote.html#license">FatFs License</a></td>
<td><a href="Middlewares/Third_Party/FatFs/doc/updates.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20190329</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FatFs/src/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FreeRTOS</td>
<td style="text-align: left;">V10.0.1</td>
<td><a href="Middlewares/Third_Party/FreeRTOS/License/license.txt">MIT</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/readme.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20190329</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32_TouchSensing_Library</td>
<td style="text-align: left;">V2.2.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_TouchSensing_Library/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Utilities</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CPU</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/CPU/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Fonts</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Fonts/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Log</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Log/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">conf</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/conf/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">lpm</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/lpm/tiny_lpm/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sequencer</td>
<td style="text-align: left;">V1.2.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/sequencer/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations-4">Known Limitations</h2>
<ul>
<li>With the ability to change the Coprocessor Wireless Binaries Over The Air (OTA), it is possible to switch from one binary to another. Only, the following case is not possible due to available memory size:
<ul>
<li>Moving from stm32wb5x_BLE_Stack_fw.bin to stm32wb5x_BLE_Thread_fw.bin</li>
</ul></li>
<li>Mac 802-15-4 applications are provided with EWARM IDE. MDK-ARM and SW4STM32 IDE are planned for a future release.</li>
<li>BLE_MeshLightingDemo application is not functionnal under Linux platform.</li>
</ul>
<h2 id="development-toolchains-and-compilers-4">Development Toolchains and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.20.2 + ST-Link</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.25 + ST-Link</li>
<li>System Workbench for STM32 (SW4STM32) toolchain V2.7 + ST-Link</li>
</ul>
<h2 id="supported-devices-and-boards-4">Supported Devices and boards</h2>
<ul>
<li>STM32WB55xx and STM32WB50xx devices</li>
<li>P-NUCLEO-WB55 kit composed of P-NUCLEO-WB55.Nucleo and P-NUCLEO-WB55.USBDongle</li>
</ul>
<h2 id="dependencies-4">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li>STM32WB_Copro_Wireless_Binaries available under Projects/STM32WB_Copro_Wireless_Binaries</li>
</ul>
<p>Several applications (BLE (Bluetooth low energy), Thread or Mac 802-15-4) are available under:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications</li>
</ul>
<p>All of them are provided in source code and some of them are also available in binary format directly for ready to use usage:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications/xxx/Binary/<projectName>.hex</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications/xxx/Binary/<projectName>.hex</li>
</ul>
<p>Each of them require a different coprocessor binary in order to behave correctly. This is documented inside each readme.txt of those applications.</p>
<p>You can refer to the <a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a> of the binaries for a detailed explanation on how to use and how to flash them.</p>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section4" aria-hidden="true"> <label for="collapse-section4" aria-hidden="true">V1.2.0 / 3rd-July-2019</label>
<div>
<h2 id="main-changes-5">Main Changes</h2>
<h3 id="stm32wb50xx-introduction-and-new-features-addition">STM32WB50xx introduction and new features addition</h3>
<p>This release introduces the following feature:</p>
<ul>
<li><strong>Add STM32WB50 support</strong></li>
<li><strong>Add new utilities folder structure</strong>
<ul>
<li>The sequencer and low power manager have moved from “Middlewares\ST\STM32_WPAN” to “Utilities”.</li>
<li>This permits reuse with other STM32 series.</li>
</ul></li>
<li><strong>Add CKS (Customer Key Storage) application</strong>
<ul>
<li>After keys have been provisioned inside the secure area, user application can use them by calling a secure load service with an index referencing the key and no more the key itself.</li>
<li>This application explains how to store AES crypto keys in secure area and reuse them.</li>
<li>It is added under “Projects\P-NUCLEO-WB55.Nucleo\Applications\CKS\CKS_Crypt”</li>
</ul></li>
<li><strong>Rework all BLE/Thread/802.15.4 application to match new utilities folder structure</strong></li>
<li><strong>Introduce the STM32CubeMx format for all Thread application on P-NUCLEO-WB55.Nucleo</strong></li>
<li><strong>Introduce the FreeRTOS with STM32CubeMx applications (BLE_HeartRateFreeRTOS and Thread_SED_Coap_FreeRTOS)</strong></li>
<li><strong>STM32 WPAN</strong>:
<ul>
<li>Scheduler and Low Power Manager reworked and moved to “Utilities” directory</li>
<li>Rework BLE folder architecture to separate the Core from the Services implementation<br />
</li>
<li>Mesh Library V1.10.000</li>
</ul></li>
</ul>
<h2 id="contents-5">Contents</h2>
<h3 id="projects-5">Projects</h3>
<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>
<p>The exhaustive list of projects and their short description is provided in this table (<a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>).</p>
<ul>
<li><strong>P-NUCLEO-WB55.Nucleo</strong> (<a href="Projects/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a>) (<a href="Projects/P-NUCLEO-WB55.Nucleo/Applications/BLE/BLE_p2pServer/readme.txt">default application</a>)</li>
<li><strong>P-NUCLEO-WB55.USBDongle</strong> (<a href="Projects/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a>) (<a href="Projects/P-NUCLEO-WB55.USBDongle/Applications/BLE/BLE_p2pClient/readme.txt">default application</a>)</li>
</ul>
<h3 id="components-5">Components</h3>
<table>
<caption>Firmware Upgrade Services Binary</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_FUS_fw.bin</td>
<td style="text-align: left;">V1.0.2</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Coprocessor Wireless Binaries</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Stack_fw.bin</td>
<td style="text-align: left;"><strong>v1.2.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;"><strong>v1.2.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Thread_FTD_fw.bin</td>
<td style="text-align: left;"><strong>v1.2.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Thread_MTD_fw.bin</td>
<td style="text-align: left;"><strong>v1.2.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Thread_fw.bin</td>
<td style="text-align: left;"><strong>v1.2.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>v1.2.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td style="text-align: left;">v1.1.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td><strong>V5.4.0</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/CMSIS/index.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32WB CMSIS</td>
<td><strong>V1.2.0</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/CMSIS/Device/ST/STM32WBxx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32WBxx_HAL_Driver</td>
<td><strong>V1.2.0</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/STM32WBxx_HAL_Driver/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">P-NUCLEO-WB55.USBDongle</td>
<td>V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">P-NUCLEO-WB55.Nucleo</td>
<td>V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Adafruit Shield</td>
<td>V3.0.3</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Adafruit_Shield/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Common</td>
<td>V5.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/Common/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP st7735</td>
<td>V1.1.2</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/st7735/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32 USB Device Library</td>
<td style="text-align: left;"><strong>V2.5.3</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_USB_Device_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32 WPAN</td>
<td style="text-align: left;"><strong>V1.2.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_WPAN/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FatFS</td>
<td style="text-align: left;">R0.12c</td>
<td><a href="Middlewares/Third_Party/FatFs/doc/en/appnote.html#license">FatFs License</a></td>
<td><a href="Middlewares/Third_Party/FatFs/doc/updates.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;"><strong>ST modified 20190329</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FatFs/src/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FreeRTOS</td>
<td style="text-align: left;">V10.0.1</td>
<td><a href="Middlewares/Third_Party/FreeRTOS/License/license.txt">MIT</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/readme.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;"><strong>ST modified 20190329</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32_TouchSensing_Library</td>
<td style="text-align: left;">V2.2.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_TouchSensing_Library/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Utilities</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CPU</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/CPU/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Fonts</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Fonts/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Log</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Log/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">conf</td>
<td style="text-align: left;"><strong>V1.0.0 (new)</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/conf/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">lpm</td>
<td style="text-align: left;"><strong>V1.1.0 (new)</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/lpm/tiny_lpm/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sequencer</td>
<td style="text-align: left;"><strong>V1.2.0 (new)</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/sequencer/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations-5">Known Limitations</h2>
<ul>
<li>With the ability to change the Coprocessor Wireless Binaries Over The Air (OTA), it is possible to switch from one binary to another. Only, the following case is not possible due to available memory size:
<ul>
<li>Moving from stm32wb5x_BLE_Stack_fw.bin to stm32wb5x_BLE_Thread_fw.bin</li>
</ul></li>
<li>Mac 802-15-4 and Zigbee applications are provided only with EWARM IDE. MDK-ARM and SW4STM32 IDE are planned for a future release.</li>
<li>BLE_MeshLightingDemo application is not functionnal under Linux platform.</li>
<li>Zigbee supports only OnOff cluster.</li>
</ul>
<h2 id="development-toolchains-and-compilers-5">Development Toolchains and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.20.2 + ST-Link</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.25 + ST-Link</li>
<li>System Workbench for STM32 (SW4STM32) toolchain V2.7 + ST-Link</li>
</ul>
<h2 id="supported-devices-and-boards-5">Supported Devices and boards</h2>
<ul>
<li>STM32WB55xx and STM32WB50xx devices</li>
<li>P-NUCLEO-WB55 kit composed of P-NUCLEO-WB55.Nucleo and P-NUCLEO-WB55.USBDongle</li>
</ul>
<h2 id="dependencies-5">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li>STM32WB_Copro_Wireless_Binaries available under Projects/STM32WB_Copro_Wireless_Binaries</li>
</ul>
<p>Several applications (BLE (Bluetooth low energy), Thread or Mac 802-15-4) are available under:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications</li>
</ul>
<p>All of them are provided in source code and some of them are also available in binary format directly for ready to use usage:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications/xxx/Binary/<projectName>.hex</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications/xxx/Binary/<projectName>.hex</li>
</ul>
<p>Each of them require a different coprocessor binary in order to behave correctly. This is documented inside each readme.txt of those applications.</p>
<p>You can refer to the <a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a> of the binaries for a detailed explanation on how to use and how to flash them.</p>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section3" aria-hidden="true"> <label for="collapse-section3" aria-hidden="true">V1.1.1 / 17-May-2019</label>
<div>
<h2 id="main-changes-6">Main Changes</h2>
<h3 id="patch-release-for-fus-v1.0.2wireless-coprocessor-binary-bug-fix-and-ble-mesh-library-improvements">Patch release for FUS V1.0.2,Wireless Coprocessor Binary bug fix and BLE Mesh Library improvements</h3>
<p>This release introduces the following feature:</p>
<ul>
<li><strong>Associated changes in Firmware Upgrade Services (FUS)</strong>:
<ul>
<li>Add support for STM32WB5xxE(512K) and STM32WB5xxC(256K) devices.</li>
<li>On STM32WB5xxC and STM32WB5xxE, it is mandatory to install FUS V1.0.2 before any other operation. Otherwise, the device might be locked in an unrecoverable state.</li>
</ul></li>
<li><strong>Associated changes in Wireless Coprocessor Binary</strong>:
<ul>
<li>[BLE System] Fix stopMode2 race condition.</li>
<li>[BLE Security] Fix pairing issue with numeric comparison.</li>
</ul></li>
<li><strong>STM32 WPAN</strong>:
<ul>
<li>Fix race condition in transport layer when an operating system is used.</li>
<li>Mesh Library V1.09.000:
<ul>
<li>Fix of the BD Address issue.</li>
<li>Light HSL Model implementation.</li>
<li>Sensor Server Model Example.</li>
<li>CID, PID Configuration.</li>
</ul></li>
</ul></li>
</ul>
<h2 id="contents-6">Contents</h2>
<h3 id="projects-6">Projects</h3>
<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>
<p>The exhaustive list of projects and their short description is provided in this table (<a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>).</p>
<ul>
<li><strong>P-NUCLEO-WB55.Nucleo</strong> (<a href="Projects/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a>) (<a href="Projects/P-NUCLEO-WB55.Nucleo/Applications/BLE/BLE_p2pServer/readme.txt">default application</a>)</li>
<li><strong>P-NUCLEO-WB55.USBDongle</strong> (<a href="Projects/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a>) (<a href="Projects/P-NUCLEO-WB55.USBDongle/Applications/BLE/BLE_p2pClient/readme.txt">default application</a>)</li>
</ul>
<p><em>Please note that the path of the example projects have been change to P-NUCLEO-WB55.Nucleo and P-NUCLEO-WB55.USBDongle.</em></p>
<h3 id="components-6">Components</h3>
<table>
<caption>Firmware Upgrade Services Binary</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_FUS_fw.bin</td>
<td style="text-align: left;"><strong>V1.0.2</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Coprocessor Wireless Binaries</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Stack_fw.bin</td>
<td style="text-align: left;"><strong>V1.1.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;"><strong>V1.1.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Thread_FTD_fw.bin</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Thread_MTD_fw.bin</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Thread_fw.bin</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td>V4.5.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/CMSIS/index.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32WB CMSIS</td>
<td>V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/CMSIS/Device/ST/STM32WBxx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32WBxx_HAL_Driver</td>
<td>V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/STM32WBxx_HAL_Driver/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">P-NUCLEO-WB55.USBDongle</td>
<td>V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">P-NUCLEO-WB55.Nucleo</td>
<td>V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Adafruit Shield</td>
<td>V3.0.3</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Adafruit_Shield/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Common</td>
<td>V5.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/Common/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP st7735</td>
<td>V1.1.2</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/st7735/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32 USB Device Library</td>
<td style="text-align: left;">V2.5.1</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_USB_Device_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32 WPAN</td>
<td style="text-align: left;"><strong>V1.1.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_WPAN/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FatFS</td>
<td style="text-align: left;">R0.12c</td>
<td><a href="Middlewares/Third_Party/FatFs/doc/en/appnote.html#license">FatFs License</a></td>
<td><a href="Middlewares/Third_Party/FatFs/doc/updates.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20180921</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FatFs/src/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FreeRTOS</td>
<td style="text-align: left;">V10.0.1</td>
<td><a href="Middlewares/Third_Party/FreeRTOS/License/license.txt">MIT</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/readme.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20180813</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32_TouchSensing_Library</td>
<td style="text-align: left;">V2.2.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_TouchSensing_Library/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Utilities</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CPU</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/CPU/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Fonts</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Fonts/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Log</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Log/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations-6">Known Limitations</h2>
<ul>
<li>With the ability to change the Coprocessor Wireless Binaries Over The Air (OTA), it is possible to switch from one binary to another. Only, the following case is not possible due to available memory size:
<ul>
<li>Moving from stm32wb5x_BLE_Stack_fw.bin to stm32wb5x_BLE_Thread_fw.bin</li>
</ul></li>
<li>P-NUCLEO-WB55.USBDongle\Applications\BLE\BLE_TransparentModeVCP is provided with EWARM and SW4STM32 IDE. MDK-ARM IDE is planned for a future release.</li>
<li>BLE\BLE_MeshLightingDemo:
<ul>
<li>Provided with EWARM IDE. MDK-ARM and SW4STM32 IDE are planned for a future release.</li>
</ul></li>
<li>Mac 802-15-4 applications are provided with EWARM IDE. MDK-ARM and SW4STM32 IDE are planned for a future release.</li>
<li>P-NUCLEO-WB55.USBDongle\Applications\Thread\Thread_Cli_Cmd:
<ul>
<li>EWARM and MDK-ARM projects are compiled with optimised size.</li>
<li>SW4STM32 project is compiled without optimisation. (With optimised size compilation, the virtual com port required for the application is not functionnal)</li>
</ul></li>
</ul>
<h2 id="development-toolchains-and-compilers-6">Development Toolchains and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.20.2 + ST-Link</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.25 + ST-Link</li>
<li>System Workbench for STM32 (SW4STM32) toolchain V2.7 + ST-Link</li>
</ul>
<h2 id="supported-devices-and-boards-6">Supported Devices and boards</h2>
<ul>
<li>STM32WB55xx devices</li>
<li>P-NUCLEO-WB55 kit composed of P-NUCLEO-WB55.Nucleo and P-NUCLEO-WB55.USBDongle</li>
</ul>
<h2 id="dependencies-6">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li>STM32WB_Copro_Wireless_Binaries available under Projects/STM32WB_Copro_Wireless_Binaries</li>
</ul>
<p>Several applications (BLE (Bluetooth low energy), Thread or Mac 802-15-4) are available under:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications</li>
</ul>
<p>All of them are provided in source code and some of them are also available in binary format directly for ready to use usage:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications/xxx/Binary/<projectName>.hex</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications/xxx/Binary/<projectName>.hex</li>
</ul>
<p>Each of them require a different coprocessor binary in order to behave correctly. This is documented inside each readme.txt of those applications.</p>
<p>You can refer to the <a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a> of the binaries for a detailed explanation on how to use and how to flash them.</p>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section2" aria-hidden="true"> <label for="collapse-section2" aria-hidden="true">V1.1.0 / 05-April-2019</label>
<div>
<h2 id="main-changes-7">Main Changes</h2>
<h3 id="new-features-introduction-and-maintenance-release">New features introduction and maintenance release</h3>
<p>This release introduces the following feature:</p>
<ul>
<li><strong>Customer Key Storage (CKS) support</strong>
<ul>
<li>The Firmware Upgrade Services (FUS) allows customer keys to be stored in the dedicated FUS Flash memory area and then to load the stored key to the AES1 in secure mode (AES1 key register accessed only by Cortex®-M0+ and data registers accessible by Cortex®-M4 user application).</li>
<li>You can refer to <a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/DM00513965.pdf">AN5185</a> : ST firmware upgrade services for STM32WB Series.</li>
</ul></li>
<li><strong>Capability to change the Coprocessor Wireless Binaries Over The Air (OTA).</strong></li>
</ul>
<p>The following improvements are provided:</p>
<ul>
<li><strong>Coprocessor Wireless Binaries improvement:</strong>
<ul>
<li>BLE NVM : change behavior when NVM is full
<ul>
<li>Inform application before latest record</li>
<li>Erase and keep latest record when it is full</li>
</ul></li>
<li>BLE Link layer : fix issue when pairing fails with SMP_SC_NUMCOMPARISON_FAILED, no response from the slave if the master sends again pairing_req.</li>
<li>BLE Link layer : fix issue Disconnection with error code 0x3D MIC Failure.</li>
<li>Thread 802_15_4 radio driver robustness improvement with additional error checks. The application is now notified in case of radio error detected inside the wireless binary.</li>
<li>Thread TxPower management improvement
<ul>
<li>New APIs provided on application side in order to control the Tx power :otPlatRadioGetTransmitPower() and otPlatRadioSetTransmitPower()</li>
<li>The default Tx power is now set to 0dBm</li>
</ul></li>
</ul></li>
<li><strong>Applications Update:</strong>
<ul>
<li>At start, all Thread applications are checking the type and the version of wireless binary downloaded.</li>
<li>BLE Transparent mode: robustness improvement.</li>
<li>BLE Transparent Mode with VCP: support commands with length greater than 64 bytes.</li>
<li>BLE P2P Router: Start ADV in multi mode after disconnection.</li>
<li>Add DFU_Standalone and HID_Standalone application on P-NUCLEO-WB55.USBDongle.</li>
</ul></li>
<li><strong>Examples Update</strong>
<ul>
<li>Add QSPI examples (QSPI_ExecuteInPlace, QSPI_MemoryMapped, QSPI_ReadWrite_DMA, QSPI_ReadWrite_IT).</li>
<li>Add LCDGlass example based on STM32CubeMX using P-NUCLEO-WB55 board and the LCDGLass from <a href="https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-discovery-kits/32l476gdiscovery.html">32L476GDISCOVERY</a>.</li>
<li>Add SAI directory containing links to similar STM32 products examples.</li>
<li>Add TSC directory containing links to similar STM32 products examples.</li>
</ul></li>
</ul>
<p><strong>For the introduction of the CKS feature, a new version of the FUS is provided: V1.0.1</strong></p>
<p>This implies a compatibility break with the binaries provided inside the STM32Cube_FW_WB_V1.0.0:</p>
<ul>
<li>The Coprocessor Wireless Binaries provided inside STM32Cube_FW_WB_V1.0.0 are not compatible with the FUS V1.0.1 provided inside STM32Cube_FW_WB_V1.1.0.</li>
<li>The Coprocessor Wireless Binaries provided inside STM32Cube_FW_WB_V1.1.0 are not compatible with the previous FUS (V0.5.3) loaded on P-NUCLEO-WB55 Kit.</li>
</ul>
<p>To use Coprocessor Wireless Binaries provided inside STM32Cube_FW_WB_V1.1.0, you must first load FUS V1.0.1. (Warning, you cannot revert the FUS to previous version). This action enables the STM32WBxx to accept all the Coprocessor Wireless Binaries provided inside STM32Cube_FW_WB_V1.1.0. The complete operation is described inside the <a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a> of the binaries.</p>
<p><strong>A particular attention to the below section “Dependencies” must be taken when using BLE, Thread or Mac 802-15-4 applications as a specific binary must be loaded inside device memory for each application.</strong></p>
<p>They can be found under the following directories:</p>
<ul>
<li>Projects\P-NUCLEO-WB55.Nucleo\Applications\BLE</li>
<li>Projects\P-NUCLEO-WB55.Nucleo\Applications\BLE_Thread</li>
<li>Projects\P-NUCLEO-WB55.Nucleo\Applications\Mac_802_15_4</li>
<li>Projects\P-NUCLEO-WB55.Nucleo\Applications\Thread</li>
<li>Projects\P-NUCLEO-WB55.USBDongle\Applications\BLE</li>
<li>Projects\P-NUCLEO-WB55.USBDongle\Applications\Thread</li>
</ul>
<h2 id="contents-7">Contents</h2>
<h3 id="projects-7">Projects</h3>
<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>
<p>The exhaustive list of projects and their short description is provided in this table (<a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>).</p>
<ul>
<li><strong>P-NUCLEO-WB55.Nucleo</strong> (<a href="Projects/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a>) (<a href="Projects/P-NUCLEO-WB55.Nucleo/Applications/BLE/BLE_p2pServer/readme.txt">default application</a>)</li>
<li><strong>P-NUCLEO-WB55.USBDongle</strong> (<a href="Projects/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a>) (<a href="Projects/P-NUCLEO-WB55.USBDongle/Applications/BLE/BLE_p2pClient/readme.txt">default application</a>)</li>
</ul>
<p><em>Please note that the path of the example projects have been change to P-NUCLEO-WB55.Nucleo and P-NUCLEO-WB55.USBDongle.</em></p>
<h3 id="components-7">Components</h3>
<table>
<caption>Firmware Upgrade Services Binary</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_FUS_fw.bin</td>
<td style="text-align: left;"><strong>V1.0.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Coprocessor Wireless Binaries</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Stack_fw.bin</td>
<td style="text-align: left;"><strong>V1.1.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;"><strong>V1.1.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Thread_FTD_fw.bin</td>
<td style="text-align: left;"><strong>V1.1.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Thread_MTD_fw.bin</td>
<td style="text-align: left;"><strong>V1.1.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Thread_fw.bin</td>
<td style="text-align: left;"><strong>V1.1.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>V1.1.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>V1.1.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td>V4.5.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/CMSIS/index.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32WB CMSIS</td>
<td><strong>V1.1.0</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/CMSIS/Device/ST/STM32WBxx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32WBxx_HAL_Driver</td>
<td><strong>V1.1.0</strong></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/STM32WBxx_HAL_Driver/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">P-NUCLEO-WB55.USBDongle</td>
<td>V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">P-NUCLEO-WB55.Nucleo</td>
<td>V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Adafruit Shield</td>
<td>V3.0.3</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Adafruit_Shield/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Common</td>
<td>V5.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/Common/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP st7735</td>
<td>V1.1.2</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/st7735/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32 USB Device Library</td>
<td style="text-align: left;">V2.5.1</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_USB_Device_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32 WPAN</td>
<td style="text-align: left;"><strong>V1.1.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_WPAN/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FatFS</td>
<td style="text-align: left;">R0.12c</td>
<td><a href="Middlewares/Third_Party/FatFs/doc/en/appnote.html#license">FatFs License</a></td>
<td><a href="Middlewares/Third_Party/FatFs/doc/updates.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20180921</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FatFs/src/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FreeRTOS</td>
<td style="text-align: left;">V10.0.1</td>
<td><a href="Middlewares/Third_Party/FreeRTOS/License/license.txt">MIT</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/readme.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20180813</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32_TouchSensing_Library</td>
<td style="text-align: left;">V2.2.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_TouchSensing_Library/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Utilities</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CPU</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/CPU/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Fonts</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Fonts/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Log</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Log/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations-7">Known Limitations</h2>
<ul>
<li>With the ability to change the Coprocessor Wireless Binaries Over The Air (OTA), it is possible to switch from one binary to another. Only, the following case is not possible due to available memory size:
<ul>
<li>Moving from stm32wb5x_BLE_Stack_fw.bin to stm32wb5x_BLE_Thread_fw.bin</li>
</ul></li>
<li>P-NUCLEO-WB55.USBDongle\Applications\BLE\BLE_TransparentModeVCP is provided with EWARM and SW4STM32 IDE. MDK-ARM IDE is planned for a future release.</li>
<li>BLE\BLE_MeshLightingDemo:
<ul>
<li>Provided with EWARM IDE. MDK-ARM and SW4STM32 IDE are planned for a future release.</li>
</ul></li>
<li>Mac 802-15-4 applications are provided with EWARM IDE. MDK-ARM and SW4STM32 IDE are planned for a future release.</li>
<li>P-NUCLEO-WB55.USBDongle\Applications\Thread\Thread_Cli_Cmd:
<ul>
<li>EWARM and MDK-ARM projects are compiled with optimised size.</li>
<li>SW4STM32 project is compiled without optimisation. (With optimised size compilation, the virtual com port required for the application is not functionnal)</li>
</ul></li>
</ul>
<h2 id="development-toolchains-and-compilers-7">Development Toolchains and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.20.2 + ST-Link</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.25 + ST-Link</li>
<li>System Workbench for STM32 (SW4STM32) toolchain V2.7 + ST-Link</li>
</ul>
<h2 id="supported-devices-and-boards-7">Supported Devices and boards</h2>
<ul>
<li>STM32WB55xx devices</li>
<li>P-NUCLEO-WB55 kit composed of P-NUCLEO-WB55.Nucleo and P-NUCLEO-WB55.USBDongle</li>
</ul>
<h2 id="dependencies-7">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li>STM32WB_Copro_Wireless_Binaries available under Projects/STM32WB_Copro_Wireless_Binaries</li>
</ul>
<p>Several applications (BLE (Bluetooth low energy), Thread or Mac 802-15-4) are available under:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications</li>
</ul>
<p>All of them are provided in source code and some of them are also available in binary format directly for ready to use usage:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications/xxx/Binary/<projectName>.hex</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications/xxx/Binary/<projectName>.hex</li>
</ul>
<p>Each of them require a different coprocessor binary in order to behave correctly. This is documented inside each readme.txt of those applications.</p>
<p>You can refer to the <a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a> of the binaries for a detailed explanation on how to use and how to flash them.</p>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section1" aria-hidden="true"> <label for="collapse-section1" aria-hidden="true">V1.0.0 / 06-February-2019</label>
<div>
<h2 id="main-changes-8">Main Changes</h2>
<h3 id="first-release">First release</h3>
<p>First release of STM32CubeWB (STM32Cube for STM32WB Series) supporting STM32WB55xx devices.</p>
<p>In the STM32CubeWB MCU Package, most of the examples and applications projects are generated with the STM32CubeMX tool to initialize the system, peripherals and middleware stacks.</p>
<p>User can open the provided ioc file in STM32CubeMX to modify the settings, add additional peripherals and/or middleware, to build his final application.</p>
<p>Several applications are provided ready to use with IAR, KEIL and SW4STM32 to demonstrate the Bluetooth Low Energy, Thread and Mac 802-15-4 capabilities of the device.</p>
<p><strong>A particular attention to the below section “Dependencies” must be taken when using BLE, Thread or Mac 802-15-4 applications as a specific binary must be loaded inside device memory for each application.</strong></p>
<p>They can be found under the following directories:</p>
<ul>
<li>Projects\P-NUCLEO-WB55.Nucleo\Applications\BLE</li>
<li>Projects\P-NUCLEO-WB55.Nucleo\Applications\BLE_Thread</li>
<li>Projects\P-NUCLEO-WB55.Nucleo\Applications\Mac_802_15_4</li>
<li>Projects\P-NUCLEO-WB55.Nucleo\Applications\Thread</li>
<li>Projects\P-NUCLEO-WB55.USBDongle\Applications\BLE</li>
<li>Projects\P-NUCLEO-WB55.USBDongle\Applications\Thread</li>
</ul>
<h2 id="contents-8">Contents</h2>
<h3 id="projects-8">Projects</h3>
<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>
<p>The exhaustive list of projects and their short description is provided in this table (<a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>).</p>
<ul>
<li><strong>P-NUCLEO-WB55.Nucleo</strong> (<a href="Projects/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a>) (<a href="Projects/P-NUCLEO-WB55.Nucleo/Applications/BLE/BLE_p2pServer/readme.txt">default application</a>)</li>
<li><strong>P-NUCLEO-WB55.USBDongle</strong> (<a href="Projects/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a>) (<a href="Projects/P-NUCLEO-WB55.USBDongle/Applications/BLE/BLE_p2pClient/readme.txt">default application</a>)</li>
</ul>
<h3 id="components-8">Components</h3>
<table>
<caption>Coprocessor Wireless Binaries</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>Release note</th>
<th>License</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Stack_fw.bin</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Thread_fw.bin</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Thread_FTD_fw.bin</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Thread_MTD_fw.bin</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>Release note</th>
<th>License</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td>V4.5.0</td>
<td><a href="Drivers/CMSIS/index.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32WB CMSIS</td>
<td>V1.0.0</td>
<td><a href="Drivers/CMSIS/Device/ST/STM32WBxx/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32WBxx_HAL_Driver</td>
<td>V1.0.0</td>
<td><a href="Drivers/STM32WBxx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">P-NUCLEO-WB55.USBDongle</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">P-NUCLEO-WB55.Nucleo</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Adafruit Shield</td>
<td>V3.0.3</td>
<td><a href="Drivers/BSP/Adafruit_Shield/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP Common</td>
<td>V5.0.0</td>
<td><a href="Drivers/BSP/Components/Common/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP st7735</td>
<td>V1.1.2</td>
<td><a href="Drivers/BSP/Components/st7735/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>Release note</th>
<th>License</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32 USB Device Library</td>
<td style="text-align: left;">V2.5.1</td>
<td><a href="Middlewares/ST/STM32_USB_Device_Library/Release_Notes.html">release notes</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32 WPAN</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="Middlewares/ST/STM32_WPAN/Release_Notes.html">release notes</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FatFS</td>
<td style="text-align: left;">R0.12c ST modified 20180921</td>
<td><a href="Middlewares/Third_Party/FatFs/doc/updates.txt">release notes</a></td>
<td><a href="Middlewares/Third_Party/FatFs/doc/en/appnote.html#license">FatFs License</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;"></td>
<td><a href="Middlewares/Third_Party/FatFs/src/st_readme.txt">release notes ST</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FreeRTOS</td>
<td style="text-align: left;">V10.0.1 ST modified 20180813</td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/readme.txt">release notes</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/License/license.txt">MIT</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;"></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/st_readme.txt">release notes ST</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Utilities</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>Release note</th>
<th>License</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CPU</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="Utilities/CPU/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Fonts</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="Utilities/Fonts/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Log</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="Utilities/Log/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations-8">Known Limitations</h2>
<ul>
<li>BLE\BLE_p2pClient is provided with EWARM and MDK-ARM IDE. A connection issue with BLE_p2pServer is encounter with SW4STM32.</li>
<li>BLE\BLE_p2pRouter is provided with EWARM and MDK-ARM IDE. A connection issue with BLE_p2pServer is encounter with SW4STM32.</li>
<li>P-NUCLEO-WB55.USBDongle\Applications\BLE\BLE_TransparentModeVCP is provided with EWARM and SW4STM32 IDE. MDK-ARM IDE is planned for a future release.</li>
<li>BLE\BLE_MeshLightingDemo:
<ul>
<li>Provided with EWARM IDE. MDK-ARM and SW4STM32 IDE are planned for a future release.</li>
<li>With Android Smartphone, the Application may failed after unprovisioning process (red LED3 glowing). In this case, reset the board, if necessary remove the node from the Mesh network in the Android application and do another provisioning.</li>
</ul></li>
<li>Mac 802-15-4 applications are provided with EWARM IDE. MDK-ARM and SW4STM32 IDE are planned for a future release.</li>
<li>P-NUCLEO-WB55.USBDongle\Applications\Thread\Thread_Cli_Cmd:
<ul>
<li>EWARM and MDK-ARM projects are compiled with optimised size.</li>
<li>SW4STM32 project is compiled without optimisation. (With optimised size compilation, the virtual com port required for the application is not functionnal)</li>
</ul></li>
<li>Thread Coprocessor Wireless Binaries
<ul>
<li>The function used to check the Txpower is not functional. The value returned is false.</li>
<li>The function to set the TxPower should not be used. The default TxPower value is set to -10dBm.</li>
<li>To set the TXPower via Cli command, type &lt;TxPower xx&gt; with xxx in the range of -21dBm to 6dBm.</li>
<li>To get the TXPOwer via Cli command type &lt;TxPower&gt;.</li>
<li>Impacted Coprocessor Wireless Binaries:
<ul>
<li>stm32wb5x_Thread_FTD_fw.bin</li>
<li>stm32wb5x_Thread_MTD_fw.bin</li>
<li>stm32wb5x_BLE_Thread_fw.bin</li>
</ul></li>
</ul></li>
</ul>
<h2 id="development-toolchains-and-compilers-8">Development Toolchains and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.20.2 + ST-Link</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.25 + ST-Link</li>
<li>System Workbench for STM32 (SW4STM32) toolchain V2.7 + ST-Link</li>
</ul>
<h2 id="supported-devices-and-boards-8">Supported Devices and boards</h2>
<ul>
<li>STM32WB55xx devices</li>
<li>P-NUCLEO-WB55 kit composed of P-NUCLEO-WB55.Nucleo and P-NUCLEO-WB55.USBDongle</li>
</ul>
<h2 id="dependencies-8">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li>STM32WB_Copro_Wireless_Binaries available under Projects/STM32WB_Copro_Wireless_Binaries</li>
</ul>
<p>Several applications (BLE (Bluetooth low energy), Thread or Mac 802-15-4) are available under:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications</li>
</ul>
<p>All of them are provided in source code and some of them are also available in binary format directly for ready to use usage:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications/xxx/Binary/<projectName>.hex</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications/xxx/Binary/<projectName>.hex</li>
</ul>
<p>Each of them require a different coprocessor binary in order to behave correctly. This is documented inside each readme.txt of those applications.</p>
<p>You can refer to the <a href="Projects/STM32WB_Copro_Wireless_Binaries/Release_Notes.html">release note</a> of the binaries for a detailed explanation on how to use and how to flash them.</p>
</div>
</div>
</div>
</div>
<footer class="sticky">
<p>For complete documentation on STM32WBxx, visit: [<a href="http://www.st.com/stm32wb">www.st.com/stm32wb</a>]</p>
<em>This release note uses up to date web standards and, for this reason, should not be opened with Internet Explorer but preferably with popular browsers such as Google Chrome, Mozilla Firefox, Opera or Microsoft Edge.</em>
</footer>
</body>
</html>