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

Release_Notes.html « STM32WB5x « STM32WB_Copro_Wireless_Binaries « Projects - github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a73dac3b1df21f52d55d93ce5fd81957395c2e58 (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
<!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 STM32WB Copro Wireless Binaries</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-stm32wb-copro-wireless-binaries"><small>Release Notes for</small> STM32WB Copro Wireless Binaries</h1>
<p>Copyright © 2020 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 component is licensed by ST under Ultimate Liberty license SLA0044, the “License”;</p>
<p>You may not use this file except in compliance with the License.</p>
<p>You may obtain a copy of the License at: <a href="http://www.st.com/SLA0044">SLA0044</a></p>
<h1 id="known-limitations">Known Limitations</h1>
<p><strong>If Anti-Rollback needs to be activated</strong>, please make sure to activate it only after installing the latest FUS version (&gt;= V1.2.0) and after successfully installing a wireless stack (without deleting it). <strong>Otherwise, further wireless stack installation will be blocked.</strong></p>
<h1 id="purpose">Purpose</h1>
<p>This release covers the delivery of STM32WB Coprocessor binaries.</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/application_note/dm00513965.pdf">AN5185</a> : ST FW upgrade services for STM32WB</li>
<li><a href="https://www.st.com/resource/en/user_manual/dm00403500-stm32cubeprogrammer-software-description-stmicroelectronics.pdf">UM2237</a> : STM32CubeProgrammer User Manual</li>
</ul>
<p>Here is the list of the supported binaries:</p>
<ul>
<li>stm32wb5x_BLE_HCI_AdvScan_fw.bin
<ul>
<li>HCI Layer only mode 5.0 certified : Link Layer, HCI</li>
<li>BT SIG Certification listing : <a href="https://launchstudio.bluetooth.com/ListingDetails/70712">Declaration ID D042213</a></li>
<li>To be used for advertising and scanning through HCI interface</li>
</ul></li>
<li>stm32wb5x_BLE_LLD_fw.bin
<ul>
<li>BLE LLD (Low Level Driver) Radio Transparent firmware</li>
<li>To be used for direct access on BLE LLD features and API</li>
</ul></li>
<li>stm32wb5x_BLE_Stack_full_fw.bin
<ul>
<li>Full BLE Stack 5.0 certified : Link Layer, HCI, L2CAP, ATT, SM, GAP and GATT database</li>
<li>BT SIG Certification listing : <a href="https://launchstudio.bluetooth.com/ListingDetails/59722">Declaration ID D042164</a>
<ul>
<li>Following features are kept:
<ul>
<li>GAP peripheral, central (LL slave up to 2 links, LL master up to 6 links)</li>
<li>GATT server, client</li>
<li>Data length extension</li>
<li>2Mbit PHY / PHY update</li>
<li>Privacy</li>
<li>White list</li>
<li>Legacy Pairing, LE secure connections</li>
<li>HCI interface (full, like stm32wb5x_BLE_HCILayer_fw.bin)</li>
<li>Direct Test Mode</li>
</ul></li>
</ul></li>
</ul></li>
<li>stm32wb5x_BLE_Stack_light_fw.bin
<ul>
<li>Full BLE Stack 5.0 certified : Link Layer, HCI, L2CAP, ATT, SM, GAP and GATT database</li>
<li>BT SIG Certification listing : <a href="https://launchstudio.bluetooth.com/ListingDetails/59722">Declaration ID D042164</a></li>
<li>Wireless Ble stack Light configuration – Slave Only
<ul>
<li>Following features are kept:
<ul>
<li>GAP peripheral only (LL slave up to 2 links)</li>
<li>GATT server</li>
<li>Data length extension</li>
<li>Privacy</li>
<li>White list</li>
<li>Legacy Pairing, LE secure connections</li>
<li>HCI interface (reduced)</li>
<li>Direct Test Mode</li>
</ul></li>
<li>BLE “Slave Only” stack implies that with this stack configuration, STM32WB is not able to scan and request a BLE connection.</li>
<li>It will just advertise, and accept incoming connection request from other master devices (e.g. Smartphone).</li>
<li>While with the “full feature” BLE stack, STM32WB5xx is able to support both master and slave roles on different links (with the limitation of max 8 links in parallel, from which max 2 slave links).</li>
</ul></li>
</ul></li>
<li>stm32wb5x_BLE_HCILayer_fw.bin
<ul>
<li>HCI Layer only mode 5.0 certified : Link Layer, HCI with Direct Test Mode</li>
<li>BT SIG Certification listing : <a href="https://launchstudio.bluetooth.com/ListingDetails/70712">Declaration ID D042213</a></li>
</ul></li>
<li>stm32wb5x_Thread_FTD_fw.bin
<ul>
<li>Full Thread Device certified v1.1</li>
<li>To be used for Leader / Router / End Device Thread role (full features excepting Border Router)</li>
</ul></li>
<li>stm32wb5x_Thread_MTD_fw.bin
<ul>
<li>Minimal Thread Device certified v1.1</li>
<li>To be used for End Device and Sleepy End Device Thread role</li>
</ul></li>
<li>stm32wb5x_BLE_Thread_static_fw.bin
<ul>
<li>Static Concurrent Mode BLE Thread</li>
<li>Supports Full BLE Stack 5.0 certified and Full Thread Device certified v1.1</li>
</ul></li>
<li>stm32wb5x_BLE_Thread_dynamic_fw.bin
<ul>
<li>Dynamic Concurrent Mode BLE Thread</li>
<li>Supports Full BLE Stack 5.0 certified and Full Thread Device certified v1.1</li>
</ul></li>
<li>stm32wb5x_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>To be used for MAC FFD and RFD devices</li>
</ul></li>
<li>stm32wb5x_Phy_802_15_4_fw.bin
<ul>
<li>802.15.4 Features exposed on application side</li>
<li>Reduced number of commands called from application side to manage 802.15.4 API</li>
<li>Not a Transparent mode, 802.15.4 API not deployed on application side</li>
<li>Can to used with STM32CubeMonitor-RF application or dedicated M4 Application.</li>
</ul></li>
<li>stm32wb5x_Zigbee_FFD_fw.bin
<ul>
<li>Zigbee Compliant Platform certified</li>
<li>Supports Full Function Device (FFD)</li>
</ul></li>
<li>stm32wb5x_Zigbee_RFD_fw.bin
<ul>
<li>Zigbee Reduced Function Device</li>
<li>Zigbee Compliant Platform certified</li>
<li>To be used for End Device Zigbee role</li>
</ul></li>
<li>stm32wb5x_BLE_Mac_802_15_4_fw.bin
<ul>
<li>Static Concurrent Mode BLE MAC 802.15.4.</li>
<li>Supports Full BLE Stack 5.0 certified and MAC 802.15.4 API based on latest official <a href="http://grouper.ieee.org/groups/802/15/pub/Download.html">IEEE Std 802.15.4-2011</a></li>
</ul></li>
<li>stm32wb5x_BLE_Zigbee_FFD_static_fw.bin
<ul>
<li>Static Concurrent Mode BLE Zigbee FFD</li>
<li>Supports Full BLE Stack 5.0 certified and Zigbee FFD(Full Function Device) Compliant Platform certified</li>
</ul></li>
<li>stm32wb5x_BLE_Zigbee_RFD_static_fw.bin
<ul>
<li>Static Concurrent Mode BLE Zigbee RFD</li>
<li>Supports Full BLE Stack 5.0 certified and Zigbee RFD(Reduced Function Device) Compliant Platform certified</li>
<li>Optimized for Power consumption.</li>
</ul></li>
<li>stm32wb5x_BLE_Zigbee_FFD_dynamic_fw.bin
<ul>
<li>Dynamic Concurrent Mode BLE Zigbee FFD.</li>
<li>Supports Full BLE Stack 5.0 certified and Zigbee FFD(Full Function Device) Compliant Platform certified</li>
</ul></li>
<li>stm32wb5x_BLE_Zigbee_RFD_dynamic_fw.bin
<ul>
<li>Dynamic Concurrent Mode BLE Zigbee RFD.</li>
<li>Supports Full BLE Stack 5.0 certified and Zigbee RFD(Reduced Function Device) Compliant Platform certified.</li>
<li>Optimized for Power consumption.</li>
</ul></li>
<li>stm32wb5x_FUS_fw_1_0_2.bin
<ul>
<li>Deprecated (empty file).</li>
</ul></li>
<li>stm32wb5x_FUS_fw_for_fus_0_5_3.bin
<ul>
<li>Firmware Upgrade Services (FUS)</li>
<li>This binary is the utility to flash the Wireless Coprocessor Binaries.</li>
<li>Latest version of the FUS to upgrade board containing only FUS v0.5.3</li>
</ul></li>
<li>stm32wb5x_FUS_fw.bin
<ul>
<li>Firmware Upgrade Services (FUS)</li>
<li>This binary is the utility to flash the Wireless Coprocessor Binaries.</li>
<li>Latest version of the FUS</li>
</ul></li>
</ul>
<p><mark>How to flash the Wireless Coprocessor Binary via SWD/JTAG by ST-LINK (STM32CubeProgrammer GUI)</mark></p>
<ul>
<li><p><em>Inside the below procedure, the references to binaries name and install address are provided in the section <strong>Main Changes</strong> of this file.</em></p></li>
<li><p>STEP 1: Use STM32CubeProgrammer GUI</p>
<ul>
<li><p>Version 2.7.0 or higher.</p></li>
<li><p>It gives access to Firmware Upgrade Service (FUS) (<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.) through Bootloader.</p></li>
<li><p>It is currently available as Graphical User Interface (GUI) mode (or Command Line Interface (CLI) mode).</p></li>
</ul></li>
<li><p>STEP 2: Access to SWD Interface (system flash)</p>
<ul>
<li>For P-NUCLEO-WB55.Nucleo :
<ul>
<li>Power ON via ST-LINK and Jumper JP1(USB_STL)</li>
</ul></li>
<li>For P-NUCLEO-WB55.USBDongle :
<ul>
<li>remain switch SW2 to Boot1</li>
<li>Connect P-NUCLEO-WB55.USBDongle</li>
</ul></li>
<li>open STM32CubeProgrammer GUI and select “ST-LINK”</li>
<li>in ST-LINK configuration: (Port: SWD) then select “Connect”</li>
</ul></li>
<li><p>STEP 3: select “Start FUS” in Firmware Upgrade Services</p></li>
<li><p>STEP 4: Read and upgrade FUS Version</p>
<ul>
<li>it can been obtained selecting “Read FUS infos”
<ul>
<li><em>00050300</em>: FUSv0.5.3 =&gt; <strong>Must be updated using STEP 5.</strong></li>
<li><em>010X0Y00</em>: FUSv1.<strong>x</strong>.y =&gt; <strong>Must be updated using STEP 6 (when x &lt; 2).</strong></li>
<li><em>01020000</em>: FUSv1.2.0 =&gt; <strong>Up to date, you can download the new wireless stack using STEP 7.</strong></li>
</ul></li>
</ul></li>
<li><p>STEP 5: Download latest FUS for only FUSv0.5.3 upgrade</p>
<ul>
<li>in Firmware Upgrade Services: (File Path: [stm32wb5x_FUS_fw_for_fus_0_5_3.bin], Start Adress: [Install@])</li>
<li>then select “Firmware Upgrade” Please check <strong>Firmware Upgrade Services Binary Table</strong> for Install@ parameter depending of the binary.</li>
</ul></li>
<li><p>STEP 6: Download latest FUS</p>
<ul>
<li>in Firmware Upgrade Service: (File Path: [FUS_Binary], Start Adress: [Install@])</li>
<li>then select “Firmware Upgrade” Please check <strong>Firmware Upgrade Services Binary Table</strong> for Install@ parameter depending of the binary.</li>
</ul></li>
<li><p>STEP 7: Download new wireless stack (after “FW Delete” if requested)</p>
<ul>
<li>in Firmware Upgrade Service: (File Path: [Wireless_Coprocessor_Binary], Start Adress: [Install@])</li>
<li>then select “Firmware Upgrade” (with “Verify download” and “Start stack after upgrade”) Please check <strong>Firmware Upgrade Services Binary Table</strong> for Install@ parameter depending of the binary. (<strong>optional</strong>: activate “Anti-Rollback” on downloaded binary) If you need to perform FUS related manipulations, you always need to START the FUS in case the FUS is not running.</li>
</ul></li>
<li><p>STEP 8: Revert to default configuration: in Option Bytes menu for User Configuration set: nSWboot0=1 (checked) nboot1=1 nboot0=1</p></li>
</ul>
<p><mark>How to flash the Wireless Coprocessor Binary via USB (STM32CubeProgrammer GUI)</mark></p>
<ul>
<li><p><em>Inside the below procedure, the references to binaries name and install address are provided in the section <strong>Main Changes</strong> of this file.</em></p></li>
<li><p>STEP 1: Use STM32CubeProgrammer GUI</p>
<ul>
<li><p>Version 2.7.0 or higher.</p></li>
<li><p>It gives access to Firmware Upgrade Service (FUS) (<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.) through Bootloader.</p></li>
<li><p>It is currently available as Graphical User Interface (GUI) mode (or Command Line Interface (CLI) mode).</p></li>
</ul></li>
<li><p>STEP 2: Access to Bootloader USB Interface (system flash)</p>
<ul>
<li>Boot mode selected by Boot0 pin set to VDD
<ul>
<li>For P-NUCLEO-WB55.Nucleo :
<ul>
<li>Jumper between CN7.5(VDD) and CN7.7(Boot0)</li>
<li>Power ON via USB_USER and Jumper JP1(USB_MCU)</li>
</ul></li>
<li>For P-NUCLEO-WB55.USBDongle :
<ul>
<li>Move switch SW2 to Boot0</li>
<li>Connect P-NUCLEO-WB55.USBDongle</li>
</ul></li>
</ul></li>
<li><p><strong>Warning</strong>: required Option Byte configuration: [nSWboot0=1]</p></li>
<li><p>Open STM32CubeProgrammer GUI and select “USB” with (Port: USB1) in USB configuration then select “Connect”</p></li>
</ul></li>
<li><p>STEP 3: step bypassed via USB</p></li>
<li><p>STEP 4: Read and upgrade FUS Version</p>
<ul>
<li>it can been obtained selecting “Read FUS infos”
<ul>
<li><em>00050300</em>: FUSv0.5.3 =&gt; <strong>Must be updated using STEP 5.</strong></li>
<li><em>010X0Y00</em>: FUSv1.<strong>x</strong>.y =&gt; <strong>Must be updated using STEP 6 (when x &lt; 2).</strong></li>
<li><em>01020000</em>: FUSv1.2.0 =&gt; <strong>Up to date, you can download the new wireless stack using STEP 7.</strong></li>
</ul></li>
</ul></li>
<li><p>STEP 5: Download latest FUS for only FUSv0.5.3 upgrade</p>
<ul>
<li>in Firmware Upgrade Service: (File Path: [stm32wb5x_FUS_fw_for_fus_0_5_3.bin], Start Adress: [Install@])</li>
<li>then select “Firmware Upgrade” Please check <strong>Firmware Upgrade Services Binary Table</strong> for Install@ parameter depending of the binary.</li>
</ul></li>
<li><p>STEP 6: Download latest FUS</p>
<ul>
<li>in Firmware Upgrade Service: (File Path: [FUS_Binary], Start Adress: [Install@])</li>
<li>then select “Firmware Upgrade” Please check <strong>Firmware Upgrade Services Binary Table</strong> for Install@ parameter depending of the binary.</li>
</ul></li>
<li><p>STEP 7: Download new wireless stack (after “FW Delete” if requested)</p>
<ul>
<li>in Firmware Upgrade Service: (File Path: [Wireless_Coprocessor_Binary], Start Adress: [Install@])</li>
<li>then select “Firmware Upgrade” (with “Verify download” and “Start stack after upgrade”) Please check <strong>Firmware Upgrade Services Binary Table</strong> for Install@ parameter depending of the binary.</li>
</ul></li>
<li><p>STEP 8: Revert STEP 2 procedure to put back device in normal mode.</p></li>
</ul>
<p><mark>How to flash the Wireless Coprocessor Binary via SWD/JTAG by ST-LINK (Command Line Interface)</mark></p>
<ul>
<li><p><em>Inside the below procedure, the references to binaries name and install address are provided in the section <strong>Main Changes</strong> of this file.</em></p></li>
<li><p>STEP 1: Use STM32CubeProgrammer</p>
<ul>
<li><p>Version 2.7.0 or higher.</p></li>
<li><p>It gives access to Firmware Upgrade Service (FUS) (<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.) through Bootloader.</p></li>
<li><p>It is currently available as Command Line Interface (CLI) mode.</p></li>
</ul></li>
<li><p>STEP 2: Access to SWD Interface (system flash)</p>
<ul>
<li>For P-NUCLEO-WB55.Nucleo :
<ul>
<li>Power ON via ST-LINK and Jumper JP1(USB_STL)</li>
</ul></li>
<li>For P-NUCLEO-WB55.USBDongle :
<ul>
<li>remain switch SW2 to Boot1</li>
<li>Connect P-NUCLEO-WB55.USBDongle</li>
</ul></li>
</ul></li>
<li><p>STEP 3: apply “Start FUS”</p>
<ul>
<li><em>STM32_Programmer_CLI.exe -c port=swd -startfus</em></li>
</ul></li>
<li><p>STEP 4: Read and upgrade FUS Version</p>
<ul>
<li><em>STM32_Programmer_CLI.exe -c port=swd mode=UR -r32 0x20010010 1</em>
<ul>
<li><em><span class="citation" data-cites="0x20010010">@0x20010010</span>: 00050300</em>: FUSv0.5.3 =&gt; <strong>Must be updated using STEP 5.</strong></li>
<li><em><span class="citation" data-cites="0x20010010">@0x20010010</span>: 010X0Y00</em>: FUSv1.<strong>x</strong>.y =&gt; <strong>Must be updated using STEP 6 (when x &lt; 2).</strong></li>
<li><em><span class="citation" data-cites="0x20010010">@0x20010010</span>: 01020X00</em>: FUSv1.2.0 =&gt; <strong>Up to date, you can download the new wireless stack using STEP 7.</strong></li>
</ul></li>
</ul></li>
<li><p>STEP 5: Download latest FUS for only FUSv0.5.3 upgrade</p>
<ul>
<li><em>STM32_Programmer_CLI.exe -c port=swd mode=UR -fwupgrade stm32wb5x_FUS_fw_for_fus_0_5_3.bin [Install@] firstinstall=0</em></li>
</ul>
<p>Please check <strong>Firmware Upgrade Services Binary Table</strong> for Install@ parameter depending of the binary.</p></li>
<li><p>STEP 6: Download latest FUS</p>
<ul>
<li><em>STM32_Programmer_CLI.exe -c port=swd mode=UR -fwupgrade [FUS_Binary] [Install@] firstinstall=0</em></li>
</ul>
<p>Please check <strong>Firmware Upgrade Services Binary Table</strong> for Install@ parameter depending of the binary.</p></li>
<li><p>STEP 7: Download new wireless stack</p>
<ul>
<li><em>STM32_Programmer_CLI.exe -c port=swd mode=UR -fwupgrade [Wireless_Coprocessor_Binary] [Install@] firstinstall=0</em></li>
</ul>
<p>Please check <strong>Wireless Coprocessor Binary Table</strong> for Install@ parameter depending of the binary. (<strong>optional</strong>: activate “Anti-Rollback” on downloaded binary: <em>STM32_Programmer_CLI.exe -c port=swd -antirollback</em>) If you need to perform FUS related manipulations, you always need to START the FUS in case the FUS is not running.</p></li>
<li><p>STEP 8: Revert to default OB configuration</p>
<ul>
<li>*STM32_Programmer_CLI.exe -c port=swd mode=UR -ob nSWboot0=1 nboot1=1 nboot0=1</li>
</ul></li>
</ul>
<p><mark>How to flash the Wireless Coprocessor Binary via USB (Command Line Interface)</mark></p>
<ul>
<li><p><em>Inside the below procedure, the references to binaries name and install address are provided in the section <strong>Main Changes</strong> of this file.</em></p></li>
<li><p>STEP 1: Use STM32CubeProgrammer</p>
<ul>
<li><p>Version 2.7 or higher.</p></li>
<li><p>It gives access to Firmware Upgrade Service (FUS) (<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.) through Bootloader.</p></li>
<li><p>It is currently available as Command Line Interface (CLI) mode.</p></li>
</ul></li>
<li><p>STEP 2: Access to Bootloader USB Interface (system flash)</p>
<ul>
<li>Boot mode selected by Boot0 pin set to VDD
<ul>
<li>For P-NUCLEO-WB55.Nucleo :
<ul>
<li>Jumper between CN7.5(VDD) and CN7.7(Boot0)</li>
<li>Power ON via USB_USER and Jumper JP1(USB_MCU)</li>
</ul></li>
<li>For P-NUCLEO-WB55.USBDongle :
<ul>
<li>Move switch SW2 to Boot0</li>
<li>Connect P-NUCLEO-WB55.USBDongle</li>
</ul></li>
</ul></li>
<li><strong>Warning</strong>: required Option Byte configuration: [nSWboot0=1]</li>
</ul></li>
<li><p>STEP 3: step bypassed via USB</p></li>
<li><p>STEP 4: Read and upgrade FUS Version</p>
<ul>
<li><em>STM32_Programmer_CLI.exe -c port=usb1 -r32 0x20030030 1</em>
<ul>
<li><em><span class="citation" data-cites="0x20030030">@0x20030030</span>: 00050300</em>: FUSv0.5.3 =&gt; <strong>Must be updated using STEP 5.</strong></li>
<li><em><span class="citation" data-cites="0x20030030">@0x20030030</span>: 010X0Y00</em>: FUSv1.<strong>x</strong>.y =&gt; <strong>Must be updated using STEP 6 (when x &lt; 2).</strong></li>
<li><em><span class="citation" data-cites="0x20030030">@0x20030030</span>: 01020X00</em>: FUSv1.2.0 =&gt; <strong>Up to date, you can download the new wireless stack using STEP 7.</strong></li>
</ul></li>
</ul></li>
<li><p>STEP 5: Download latest FUS for only FUSv0.5.3 upgrade</p>
<ul>
<li><em>STM32_Programmer_CLI.exe -c port=usb1 -fwupgrade stm32wb5x_FUS_fw_for_fus_0_5_3.bin [Install@] firstinstall=0</em></li>
</ul>
<p>Please check <strong>Firmware Upgrade Services Binary Table</strong> for Install@ parameter depending of the binary.</p></li>
<li><p>STEP 6: Download latest FUS</p>
<ul>
<li><em>STM32_Programmer_CLI.exe -c port=usb1 -fwupgrade [FUS_Binary] [Install@] firstinstall=0</em> Please check <strong>Firmware Upgrade Services Binary Table</strong> for Install@ parameter depending of the binary.</li>
</ul></li>
<li><p>STEP 7: Download new wireless stack</p>
<ul>
<li><em>STM32_Programmer_CLI.exe -c port=usb1 -fwupgrade [Wireless_Coprocessor_Binary] [Install@] firstinstall=0</em> Please check <strong>Wireless Coprocessor Binary Table</strong> for Install@ parameter depending of the binary.</li>
</ul></li>
<li><p>STEP 8: Revert STEP 2 procedure to put back device in normal mode.</p></li>
</ul>
<p><mark>How to compute available flash size </mark></p>
<ul>
<li><p>The default linker file is provided in [\Drivers\CMSIS\Device\ST32WBxx\Source\Templates].</p>
<p>The maximum flash memory that can be used by the application is up to the Secure Flash Start Address (SFSA) that can be read from the option byte.</p>
<p>The <strong>ICFEDIT_region_ROM_end</strong> in the linker can be modified with a value up to : (0x08000000 + (SFSA &lt;&lt; 12)) - 1.</p></li>
<li><p><strong>Example</strong>: When the SFSA option byte is set to 0xA0, the maximum value to be used for __ICFEDIT_region_ROM_end is 0x0809FFFF – which is 640KB of flash</p></li>
<li><p><strong>Note</strong>: The SFSA option byte can only be set by the CPU2. The user cannot modify that value.</p></li>
</ul>
</div>
<div class="col-sm-12 col-lg-8">
<h1 id="update-history">Update History</h1>
<div class="collapse">
<input type="checkbox" id="collapse-section15" checked aria-hidden="true"> <label for="collapse-section15" aria-hidden="false">V1.11.1 / 23-March-2021</label>
<div>
<h2 id="main-changes">Main Changes</h2>
<ul>
<li>BLE:
<ul>
<li>ID 102000 : [STM32WB55/STM32WB15]: Default CFG_BLE_MAX_CONN_EVENT_LENGTH value updated for all BLE examples</li>
<li>ID 99680 : 2nd link secure fail if master database is clear during 1st link connection</li>
<li>ID 101346 : ACI_GAP_BOND_LOST_Event timeout does not work if ALLOW rebond not sent</li>
<li>ID 101921 : PTS issue ticket done CASE0070853: destination channel ID value above 1000 should be allowed and test passed</li>
<li>ID 94289 ,ID 102395 ,ID 100425 : BLE_Ota application improvments (SBSFU ready, Flash driver use, SEM7 flash activity control)</li>
</ul></li>
<li>Thread:
<ul>
<li>ID 102357 : High power consumption after exactly 3 minutes in Thread_SED_Coap_Multicast example</li>
</ul></li>
<li>Zigbee:
<ul>
<li>ID 100612 : Zigbee stack not going back in low power mode after SF timer wrap-around</li>
</ul></li>
<li>MAC 802.15.4:
<ul>
<li>ID 95824 : stm32wb5x_Mac_802_15_4_fw.bin will change RCC_CFGR value even if user wants to use PLL for CM4 64MHz</li>
</ul></li>
<li>FUS binaries upgrade to v1.2.0:
<ul>
<li>New stm32wb5x_FUS_fw_for_fus_0_5_3.bin: FUS V1.2.0 image to be installed exclusively on STM32WB5x containing FUS V0.5.3</li>
<li>updated stm32wb5x_FUS_fw.bin: FUS V1.2.0 image to be installed on STM32WB5x containing all FUS versions higher than V0.5.3</li>
<li>stm32wb5x_FUS_fw_1_0_2.bin: Deprecated (empty file).</li>
</ul></li>
</ul>
<p><strong>Firmware Upgrade Services Binary Table</strong>: Provides Install address for the targeted binary to be used in flash procedure “STEP 5/6” via USB or via SWD/JTAG.</p>
<table>
<colgroup>
<col style="width: 37%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 6%" />
<col style="width: 3%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxY(640k)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_FUS_fw_for_fus_0_5_3.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>9A</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td><strong>v1.2.0</strong></td>
<td>04/06/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_FUS_fw.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>9A</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td><strong>v1.2.0</strong></td>
<td>04/06/2021</td>
</tr>
</tbody>
</table>
<p><strong>Wireless Coprocessor Binary Table</strong>: Provides Install address for the targeted binary to be used in flash procedure “STEP 7” via USB or via SWD/JTAG.</p>
<table>
<colgroup>
<col style="width: 34%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 3%" />
<col style="width: 3%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxY(640k)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_BLE_HCILayer_fw.bin</td>
<td>0x080E0000</td>
<td>0x0808C000</td>
<td>0x0806C000</td>
<td>0x802C000</td>
<td><strong>v1.11.1</strong></td>
<td>03/22/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_HCI_AdvScan_fw.bin</td>
<td>0x080EA000</td>
<td>0x08096000</td>
<td>0x08076000</td>
<td>0x8036000</td>
<td><strong>v1.11.1</strong></td>
<td>03/22/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_LLD_fw.bin</td>
<td>0x080EC000</td>
<td>0x08098000</td>
<td>0x08078000</td>
<td>0x08038000</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Mac_802_15_4_fw.bin</td>
<td>0x080B5000</td>
<td>0x08061000</td>
<td>0x08041000</td>
<td>0x08001000</td>
<td>v1.11.0</td>
<td>02/05/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Stack_full_fw.bin</td>
<td>0x080CA000</td>
<td>0x08076000</td>
<td>0x08056000</td>
<td>0x8016000</td>
<td><strong>v1.11.1</strong></td>
<td>03/22/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Stack_light_fw.bin</td>
<td>0x080D6000</td>
<td>0x08082000</td>
<td>0x08062000</td>
<td>0x8022000</td>
<td><strong>v1.11.1</strong></td>
<td>03/22/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Thread_dynamic_fw.bin</td>
<td>0x08070000</td>
<td>0x0801C000</td>
<td>0x00</td>
<td>0x00</td>
<td>v1.11.0</td>
<td>02/05/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Thread_static_fw.bin</td>
<td>0x08072000</td>
<td>0x0801E000</td>
<td>0x00</td>
<td>0x00</td>
<td>v1.11.0</td>
<td>02/05/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Zigbee_FFD_dynamic_fw.bin</td>
<td>0x08077000</td>
<td>0x08023000</td>
<td>0x08003000</td>
<td>0x00</td>
<td>v1.11.0</td>
<td>02/05/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Zigbee_FFD_static_fw.bin</td>
<td>0x08079000</td>
<td>0x08025000</td>
<td>0x08005000</td>
<td>0x00</td>
<td>v1.11.0</td>
<td>02/05/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Zigbee_RFD_dynamic_fw.bin</td>
<td>0x08086000</td>
<td>0x08032000</td>
<td>0x08012000</td>
<td>0x00</td>
<td>v1.11.0</td>
<td>02/05/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Zigbee_RFD_static_fw.bin</td>
<td>0x08087000</td>
<td>0x08033000</td>
<td>0x08013000</td>
<td>0x00</td>
<td>v1.11.0</td>
<td>02/05/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Mac_802_15_4_fw.bin</td>
<td>0x080E3000</td>
<td>0x0808F000</td>
<td>0x0806F000</td>
<td>0x0802F000</td>
<td><strong>v1.11.1</strong></td>
<td>03/23/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_Phy_802_15_4_fw.bin</td>
<td>0x080DE000</td>
<td>0x0808A000</td>
<td>0x0806A000</td>
<td>0x0802A000</td>
<td><strong>v1.11.1</strong></td>
<td>03/23/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Thread_FTD_fw.bin</td>
<td>0x08098000</td>
<td>0x08044000</td>
<td>0x08024000</td>
<td>0x00</td>
<td><strong>v1.11.1</strong></td>
<td>03/23/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_Thread_MTD_fw.bin</td>
<td>0x080AB000</td>
<td>0x08057000</td>
<td>0x08037000</td>
<td>0x00</td>
<td><strong>v1.11.1</strong></td>
<td>03/23/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Zigbee_FFD_fw.bin</td>
<td>0x080A7000</td>
<td>0x08053000</td>
<td>0x08033000</td>
<td>0x00</td>
<td><strong>v1.11.1</strong></td>
<td>03/23/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_Zigbee_RFD_fw.bin</td>
<td>0x080B5000</td>
<td>0x08061000</td>
<td>0x08041000</td>
<td>0x08001000</td>
<td><strong>v1.11.1</strong></td>
<td>03/23/2021</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section14" aria-hidden="true"> <label for="collapse-section14" aria-hidden="false">V1.11.0 / 5-February-2021</label>
<div>
<h2 id="main-changes-1">Main Changes</h2>
<p><strong>Associated changes in Wireless Coprocessor Binary</strong>:</p>
<ul>
<li>Support of new binary:
<ul>
<li>stm32wb5x_BLE_Mac_802_15_4_fw.bin : This binary supports static concurrency between BLE and MAC</li>
</ul></li>
<li>FUS:
<ul>
<li>General security enhancements</li>
<li>Allow larger image upgrade with lower flash size</li>
</ul></li>
<li>802.15.4 General:
<ul>
<li>Support of external PA</li>
</ul></li>
<li>Phy 802.15.4:
<ul>
<li>New functions CW_start and CW_stop implemented. A pure signal (i.e. no modulation) is generated at a specific frequency.</li>
</ul></li>
<li>THREAD:
<ul>
<li>Updated OpenThread stack to <strong>SHA-1: 3dbd91aa2b70c7d5cc71b2c465ce3583a13dea79</strong> (tag thread-reference-20191113)</li>
<li>ID 91270 : Add CoAP Secure support</li>
</ul></li>
<li>Zigbee:
<ul>
<li>ZDO permit join request rejected if duration is equal to 0xff</li>
<li>Memory allocation improvement when closing a Zigbee session</li>
<li>M0 heap size used by the stack updated in RFD configuration (8K instead of 32K)</li>
<li>TouchLink feature improvement</li>
</ul></li>
<li>BLE:
<ul>
<li>ID 97211 : Continuous scan hangs without scan completion event, Fix an identified GAP advertising filtering issue</li>
<li>ID 98174 : Update BLE interface documentation about ACI_HAL_GET_LINK_STATUS</li>
<li>ID 97936 : L2CAP update to support IP over BLE (M.6874), SHCI_C2_BLE_init() updated parameters to be provided to CPU2 with new BLE stack Options flags to be configured as: - SHCI_C2_BLE_INIT_OPTIONS_LL_ONLY - SHCI_C2_BLE_INIT_OPTIONS_LL_HOST - SHCI_C2_BLE_INIT_OPTIONS_NO_SVC_CHANGE_DESC - SHCI_C2_BLE_INIT_OPTIONS_WITH_SVC_CHANGE_DESC - SHCI_C2_BLE_INIT_OPTIONS_DEVICE_NAME_RO - SHCI_C2_BLE_INIT_OPTIONS_DEVICE_NAME_RW - SHCI_C2_BLE_INIT_OPTIONS_POWER_CLASS_1 - SHCI_C2_BLE_INIT_OPTIONS_POWER_CLASS_2_3</li>
<li>ID 94042, ID 97931 : STM32WB to handle certification BT5.2 (tcrl 2019-2)</li>
<li>ID 94489 : Enhancement of BLE Device (MAC) Address from UID64</li>
<li>ID 97789 : The memory manager shall be more efficient</li>
</ul></li>
<li>BLE Zigbee Static mode:
<ul>
<li>Fix memory leak: Clean stop of Zb timers and free all ZB heap, before a switch Zigbee to BLE</li>
</ul></li>
</ul>
<p><strong>Firmware Upgrade Services Binary Table</strong>: Provides Install address for the targeted binary to be used in flash procedure “STEP 5/6” via USB or via SWD/JTAG.</p>
<table>
<colgroup>
<col style="width: 37%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 6%" />
<col style="width: 3%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxY(640k)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_FUS_fw_1_0_2.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>9A</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td>v1.0.2</td>
<td>04/10/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_FUS_fw.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>9A</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td><strong>v1.1.2</strong></td>
<td>02/05/2021</td>
</tr>
</tbody>
</table>
<p><strong>Wireless Coprocessor Binary Table</strong>: Provides Install address for the targeted binary to be used in flash procedure “STEP 7” via USB or via SWD/JTAG.</p>
<table>
<colgroup>
<col style="width: 34%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 3%" />
<col style="width: 3%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxY(640k)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_BLE_HCILayer_fw.bin</td>
<td>0x080E0000</td>
<td>0x0808C000</td>
<td>0x0806C000</td>
<td>0x802C000</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_HCI_AdvScan_fw.bin</td>
<td>0x080EA000</td>
<td>0x08096000</td>
<td>0x08076000</td>
<td>0x8036000</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_LLD_fw.bin</td>
<td>0x080EC000</td>
<td>0x08098000</td>
<td>0x08078000</td>
<td>0x08038000</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Mac_802_15_4_fw.bin</td>
<td>0x080B5000</td>
<td>0x08061000</td>
<td>0x08041000</td>
<td>0x08001000</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Stack_full_fw.bin</td>
<td>0x080CA000</td>
<td>0x08076000</td>
<td>0x08056000</td>
<td>0x8016000</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Stack_light_fw.bin</td>
<td>0x080D6000</td>
<td>0x08082000</td>
<td>0x08062000</td>
<td>0x8022000</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Thread_dynamic_fw.bin</td>
<td>0x08070000</td>
<td>0x0801C000</td>
<td>0x00</td>
<td>0x00</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Thread_static_fw.bin</td>
<td>0x08072000</td>
<td>0x0801E000</td>
<td>0x00</td>
<td>0x00</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Zigbee_FFD_dynamic_fw.bin</td>
<td>0x08077000</td>
<td>0x08023000</td>
<td>0x08003000</td>
<td>0x00</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Zigbee_FFD_static_fw.bin</td>
<td>0x08079000</td>
<td>0x08025000</td>
<td>0x08005000</td>
<td>0x00</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Zigbee_RFD_dynamic_fw.bin</td>
<td>0x08086000</td>
<td>0x08032000</td>
<td>0x08012000</td>
<td>0x00</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Zigbee_RFD_static_fw.bin</td>
<td>0x08087000</td>
<td>0x08033000</td>
<td>0x08013000</td>
<td>0x00</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Mac_802_15_4_fw.bin</td>
<td>0x080E3000</td>
<td>0x0808F000</td>
<td>0x0806F000</td>
<td>0x0802F000</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_Phy_802_15_4_fw.bin</td>
<td>0x080DE000</td>
<td>0x0808A000</td>
<td>0x0806A000</td>
<td>0x0802A000</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Thread_FTD_fw.bin</td>
<td>0x08098000</td>
<td>0x08044000</td>
<td>0x08024000</td>
<td>0x00</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_Thread_MTD_fw.bin</td>
<td>0x080AB000</td>
<td>0x08057000</td>
<td>0x08037000</td>
<td>0x00</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Zigbee_FFD_fw.bin</td>
<td>0x080A7000</td>
<td>0x08053000</td>
<td>0x08033000</td>
<td>0x00</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
<tr class="even">
<td>stm32wb5x_Zigbee_RFD_fw.bin</td>
<td>0x080B5000</td>
<td>0x08061000</td>
<td>0x08041000</td>
<td>0x08001000</td>
<td><strong>v1.11.0</strong></td>
<td>02/05/2021</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section13" aria-hidden="true"> <label for="collapse-section13" aria-hidden="false">V1.10.0 / 26-October-2020</label>
<div>
<h2 id="main-changes-2">Main Changes</h2>
<p><strong>Associated changes in Wireless Coprocessor Binary</strong>:</p>
<ul>
<li>BLE:
<ul>
<li>ID 87954 : Minimal time to keep Sem7 released by CPU1 so CPU2 can take it</li>
<li>ID 89925 : LLD_BLE_StopActivity does not stop BLE activity</li>
<li>ID 91232 : aci_gap_start_general_discovery_proc stopped in scan only configuration<br />
</li>
<li>ID 93009 : The dyn_alloc_a (GAP) and dyn_alloc_gatt_a (GATT) shall have fixed size</li>
<li>ID 93025 : The HSERDY bit stays high after CPU2 is started</li>
</ul></li>
<li>BLE ZIGBEE Static mode:
<ul>
<li>ID 93176 : Low power mode is activated for BLE and Zigbee.</li>
</ul></li>
</ul>
<p><strong>Firmware Upgrade Services Binary Table</strong>: Provides Install address for the targeted binary to be used in flash procedure “STEP 5/6” via USB or via SWD/JTAG.</p>
<table>
<colgroup>
<col style="width: 37%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 6%" />
<col style="width: 3%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxY(640k)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_FUS_fw_1_0_2.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>9A</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td>v1.0.2</td>
<td>04/10/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_FUS_fw.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>9A</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td><strong>v1.1.0</strong></td>
<td>02/10/2020</td>
</tr>
</tbody>
</table>
<p><strong>Wireless Coprocessor Binary Table</strong>: Provides Install address for the targeted binary to be used in flash procedure “STEP 7” via USB or via SWD/JTAG.</p>
<table>
<colgroup>
<col style="width: 34%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 3%" />
<col style="width: 3%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxY(640k)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_BLE_HCILayer_fw.bin</td>
<td>0x080E0000</td>
<td>0x0808C000</td>
<td>0x0806C000</td>
<td>0x0802C000</td>
<td><strong>v1.10.0</strong></td>
<td>10/26/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_HCI_AdvScan_fw.bin</td>
<td>0x080EA000</td>
<td>0x08096000</td>
<td>0x08076000</td>
<td>0x08036000</td>
<td><strong>v1.10.0</strong></td>
<td>10/26/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_LLD_fw.bin</td>
<td>0x080EB000</td>
<td>0x08097000</td>
<td>0x08077000</td>
<td>0x08037000</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Stack_full_fw.bin</td>
<td>0x080CB000</td>
<td>0x08077000</td>
<td>0x08057000</td>
<td>0x08017000</td>
<td><strong>v1.10.0</strong></td>
<td>10/26/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Stack_light_fw.bin</td>
<td>0x080D6000</td>
<td>0x08082000</td>
<td>0x08062000</td>
<td>0x08022000</td>
<td><strong>v1.10.0</strong></td>
<td>10/26/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Thread_dynamic_fw.bin</td>
<td>0x08075000</td>
<td>0x08021000</td>
<td>0x08001000</td>
<td>0x00</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Thread_static_fw.bin</td>
<td>0x08077000</td>
<td>0x08023000</td>
<td>0x08003000</td>
<td>0x00</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Zigbee_FFD_dynamic_fw.bin</td>
<td>0x08079000</td>
<td>0x08025000</td>
<td>0x08005000</td>
<td>0x00</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Zigbee_FFD_static_fw.bin</td>
<td>0x0807B000</td>
<td>0x08027000</td>
<td>0x08007000</td>
<td>0x00</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Zigbee_RFD_dynamic_fw.bin</td>
<td>0x08087000</td>
<td>0x08033000</td>
<td>0x08013000</td>
<td>0x00</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Zigbee_RFD_static_fw.bin</td>
<td>0x08089000</td>
<td>0x08035000</td>
<td>0x08015000</td>
<td>0x00</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_Mac_802_15_4_fw.bin</td>
<td>0x080E3000</td>
<td>0x0808F000</td>
<td>0x0806F000</td>
<td>0x0802F000</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Phy_802_15_4_fw.bin</td>
<td>0x080DE000</td>
<td>0x0808A000</td>
<td>0x0806A000</td>
<td>0x0802A000</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_Thread_FTD_fw.bin</td>
<td>0x0809B000</td>
<td>0x08047000</td>
<td>0x08027000</td>
<td>0x00</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Thread_MTD_fw.bin</td>
<td>0x080B1000</td>
<td>0x0805D000</td>
<td>0x0803D000</td>
<td>0x00</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_Zigbee_FFD_fw.bin</td>
<td>0x080A7000</td>
<td>0x08053000</td>
<td>0x08033000</td>
<td>0x00</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Zigbee_RFD_fw.bin</td>
<td>0x080B6000</td>
<td>0x08062000</td>
<td>0x08042000</td>
<td>0x08002000</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section12" aria-hidden="true"> <label for="collapse-section12" aria-hidden="false">V1.9.0 / 21-September-2020</label>
<div>
<h2 id="main-changes-3">Main Changes</h2>
<p><strong>Associated changes in Wireless Coprocessor Binary</strong>:</p>
<ul>
<li>Introducing following new binaries:
<ul>
<li><strong>stm32wb5x_BLE_HCI_AdvScan_fw.bin</strong> : Ability to do advertising and scanning through HCI interface, <br/> Any connection can’t be done, numOfLinks can be set to 1 at the stack initialization call</li>
<li><strong>stm32wb5x_BLE_LLD_fw.bin</strong> : LLD BLE Radio Transparent firmware</li>
<li><strong>stm32wb5x_BLE_Thread_dynamic_fw.bin</strong> : BLE Thread Dynamic concurrent mode</li>
<li><strong>stm32wb5x_BLE_Zigbee_FFD_dynamic_fw.bin</strong> : BLE Zigbee Full Function Device Dynamic concurrent mode</li>
<li><strong>stm32wb5x_BLE_Zigbee_RFD_dynamic_fw.bin</strong> : BLE Zigbee Reduced Function Device Dynamic concurrent mode</li>
<li><strong>stm32wb5x_phy802_15_4_fw.bin</strong> replaces stm32wb5x_rfmonitor_phy802_15_4_fw.bin</li>
</ul></li>
<li>BLE Zigbee static mode is now split in two binaries:
<ul>
<li><strong>stm32wb5x_BLE_Zigbee_FFD_static_fw.bin</strong> : BLE Zigbee Full Function Device Static concurrent mode
<ul>
<li>When using this static concurrent mode, the application can switch from BLE to Zigbee_FFD or from Zigbee_FFD to BLE on request. When in Zigbee mode, the device is acting as a Full Function Device</li>
</ul></li>
<li><strong>stm32wb5x_BLE_Zigbee_RFD_static_fw.bin</strong> : BLE Zigbee Reduced Function Device Static concurrent mode
<ul>
<li>When using this static concurrent mode, the application can switch from BLE to Zigbee_RFD or from Zigbee_RFD to BLE on request. When in Zigbee mode, the device is acting as a Reduced Function Device (End device or Sleepy End Device only)</li>
</ul></li>
</ul></li>
<li>BLE:
<ul>
<li>ID 84973 : ACI_GAP_SET_DIRECT_CONNECTABLE command works for Directed_Advertising_Type in Low Duty Cycle Directed Advertising (0x01) <br/> only when Advertising_Interval_Min and Advertising_Interval_Max correctly set to 3.75 ms</li>
<li>ID 86883 : remove NVM relative code and constants from M0 firmware regenerated binaries for HCI Layer only <br/> and beacon only (BLE_HCILayer_fw,BLE_HCI_AdvScan_fw)</li>
<li>ID 86884 : remove const qualifier of NVM RAM emulation buffer in M0 firmware binaries to get in RAM not in ROM</li>
<li>ID 89110 : ACI_HAL_SCAN_REQ_REPORT_EVENT routine optimized in M0 firmware regenerated binaries as it was writing <br/> more data in memory than the allowed event size</li>
<li>ID 89430 : Integrate auto-generated DTM_cmd_db_xxx module in BLE stack libraries</li>
<li>ID 89456 : ERR_BLE_INIT event is enum listed, kept but not really supported as not reported</li>
<li>ID 90095 : Device Privacy Mode is now mandatory for BLE 5.0 and implemented to handle command HCI_LE_SET_PRIVACY_MODE command</li>
<li>ID 90607 : Beacon Only certification needs LE Test commands and LE Read Buffer Size command as: <br/> HCI_LE_RECEIVER_TEST, HCI_LE_TEST_END,HCI_LE_TRANSMITTER_TEST and LE_READ_BUFFER_SIZE integrated commands</li>
<li>ID 90891 : DEEPSLEEP mode on CPU2 not applied after aci_hal_stack_reset or hci_reset command is executed. <br/> A fix is to enable back the Stop Mode when the hci_reset() command is executed, included in all regenrated M0 firmware binaries</li>
<li>ID 91134 : SHCI_SUB_EVT_BLE_NVM_RAM_UPDATE not implemented on the stack side. <br/> A fix has been implemented on CPU2 to receive expected events on CPU1</li>
<li>ID 91157 : FLASH_SR_EOP flag remains set after the bonding info stored in NVM. <br/> A fix has been implemented to clear EOP flag after flash processing on CPU2</li>
<li>ID 91309 : A bug identified in the Link Layer which not de-allocate the memory it has allocated for ACL packets <br/> to be sent to the upper layer memory used for previous ACL packets. <br/> A fix implemented to de-allocate packet not yet sent to upper layers at the disconnection time<br />
</li>
<li>ID 91351 : CPU2 gets stuck when EOP and EOPIE both set in CPU1 FLASH interface prior CPU2 booting. <br/> A fix in NVM arbitrer implemented as enable SYSCFG only when EOPIE is enabled</li>
<li>ID 92458 : Replace the EOP polling by CFGBSY polling in CPU2 M0 firmware to get confirmation flash operation is completed <br/> to avoid unexpected interrupt on CPU1 side when its EOPIE bit is set</li>
<li>ID 91576 : The feature flag LE Power Class 1 shall be set when the ExtPa is used</li>
</ul></li>
<li>THREAD:
<ul>
<li>ID 91267 : Fix CoAP OpenThread API exposed on application side: <br/> The CoAP API is now compliant with OpenThread definition and mContext parameter is then correctly returned to the application.</li>
</ul></li>
<li>ZIGBEE:
<ul>
<li>Storage of the APS binding table in RFD mode (Persistence data management).</li>
<li>Integration of the dynamic concurrent mode between BLE and Zigbee.</li>
</ul></li>
<li>MAC 802.15.4:
<ul>
<li>ID 85031 : Association Procedure occasionally fails between 2 STM32WBxx
<ul>
<li>802.15.4 LLD enhancement corrects this issue.</li>
</ul></li>
<li>ID 91900 : Unexpected received Association Response
<ul>
<li>Fix provided in MAC reset procedure that deeply reset the Radio and 802.15.4 IP.</li>
</ul></li>
</ul></li>
</ul>
<p><strong>Firmware Upgrade Services Binary Table</strong>: Provides Install address for the targeted binary to be used in flash procedure “STEP 5/6” via USB or via SWD/JTAG.</p>
<table>
<colgroup>
<col style="width: 37%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 6%" />
<col style="width: 3%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxY(640k)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_FUS_fw_1_0_2.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>9A</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td>v1.0.2</td>
<td>04/10/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_FUS_fw.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>9A</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td><strong>v1.1.0</strong></td>
<td>02/10/2020</td>
</tr>
</tbody>
</table>
<p><strong>Wireless Coprocessor Binary Table</strong>: Provides Install address for the targeted binary to be used in flash procedure “STEP 7” via USB or via SWD/JTAG.</p>
<table>
<colgroup>
<col style="width: 34%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 3%" />
<col style="width: 3%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxY(640k)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_BLE_HCILayer_fw.bin</td>
<td>0x080E0000</td>
<td>0x0808C000</td>
<td>0x0806C000</td>
<td>0x0802C000</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_HCI_AdvScan_fw.bin</td>
<td>0x080EA000</td>
<td>0x08096000</td>
<td>0x08076000</td>
<td>0x08036000</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_LLD_fw.bin</td>
<td>0x080EB000</td>
<td>0x08097000</td>
<td>0x08077000</td>
<td>0x08037000</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Stack_full_fw.bin</td>
<td>0x080CB000</td>
<td>0x08077000</td>
<td>0x08057000</td>
<td>0x08017000</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Stack_light_fw.bin</td>
<td>0x080D5000</td>
<td>0x08081000</td>
<td>0x08061000</td>
<td>0x08021000</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Thread_dynamic_fw.bin</td>
<td>0x08075000</td>
<td>0x08021000</td>
<td>0x08001000</td>
<td>0x00</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Thread_static_fw.bin</td>
<td>0x08077000</td>
<td>0x08023000</td>
<td>0x08003000</td>
<td>0x00</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Zigbee_FFD_dynamic_fw.bin</td>
<td>0x08079000</td>
<td>0x08025000</td>
<td>0x08005000</td>
<td>0x00</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Zigbee_FFD_static_fw.bin</td>
<td>0x0807B000</td>
<td>0x08027000</td>
<td>0x08007000</td>
<td>0x00</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Zigbee_RFD_dynamic_fw.bin</td>
<td>0x08087000</td>
<td>0x08033000</td>
<td>0x08013000</td>
<td>0x00</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Zigbee_RFD_static_fw.bin</td>
<td>0x08089000</td>
<td>0x08035000</td>
<td>0x08015000</td>
<td>0x00</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_Mac_802_15_4_fw.bin</td>
<td>0x080DC000</td>
<td>0x08088000</td>
<td>0x08068000</td>
<td>0x08028000</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Phy_802_15_4_fw.bin</td>
<td>0x080DE000</td>
<td>0x0808A000</td>
<td>0x0806A000</td>
<td>0x0802A000</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_Thread_FTD_fw.bin</td>
<td>0x0809B000</td>
<td>0x08047000</td>
<td>0x08027000</td>
<td>0x00</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Thread_MTD_fw.bin</td>
<td>0x080B1000</td>
<td>0x0805D000</td>
<td>0x0803D000</td>
<td>0x00</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_Zigbee_FFD_fw.bin</td>
<td>0x080A1000</td>
<td>0x0804D000</td>
<td>0x0802D000</td>
<td>0x00</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Zigbee_RFD_fw.bin</td>
<td>0x080B0000</td>
<td>0x0805C000</td>
<td>0x0803C000</td>
<td>0x00</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section9" aria-hidden="true"> <label for="collapse-section9" aria-hidden="false">V1.8.0 / 19-June-2020</label>
<div>
<h2 id="main-changes-4">Main Changes</h2>
<p><strong>Associated changes in Wireless Coprocessor Binary</strong>:</p>
<ul>
<li>BLE:
<ul>
<li>BLE Light Stack: Slave mode only, Secure connection, Privacy moe, and White list</li>
<li>BLE stack updates:</li>
<li>ID 72580 - Ellisys issue on LE_PHY_UPDATE_COMPLETE_EVENT with LL/CON/SLA-BV-40-C Test Fail</li>
<li>ID 76257 - Ellisys LL/SLA-BI-11-C Test Fail (Data Length Update)</li>
<li>ID 83714 - Support of four new events to notify the CPU1 about flash operation (after aci_gap_clear_security_db())</li>
<li>ID 83847 - Add event weak callback functions in ble_events.c called for each static event process function</li>
<li>ID 85414 - M0 FW: increase RNG pool size to 32</li>
<li>ID 85523 - Issue in generation of Non Resolvable Private Address</li>
<li>ID 85782 - Option to move NVM to unsecure SRAM2</li>
<li>ID 85833 - Update feature content of BLE Stack Light: Secure Connections, some Privacy and White List features</li>
<li>ID 87142 - Generic Access characteristics properties (Read/Write) for device name and appearance</li>
<li>ID 89182 - [GitHub][FUS]Fix FUS version value mentioned in the release note</li>
</ul></li>
<li>MAC:
<ul>
<li>ID 86016 - Wait ACK to be Tx (if expected) before managing incoming Frame</li>
<li>ID 86017 - Remove IFS Period management from MAC layer</li>
<li>ID 87175 - Function ip802154_lld_enterSleep() must not be called in IT context as RF is no more accessible after its execution</li>
</ul></li>
<li>ZIGBEE:
<ul>
<li>FFD Zigbee stack certified: Zigbee PRO Feature Set(2017) + Green Power</li>
<li>RFD Zigbee stack certification compliant: Zigbee PRO Feature Set(2017)</li>
<li>Low power mode support</li>
<li>Support of persistent data management (NVM)</li>
<li>ID 75709 - [LowPower] Improve SFTimer wrap around time</li>
</ul></li>
<li>THREAD:
<ul>
<li>ID 75709 - [LowPower] Improve SFTimer wrap around time</li>
</ul></li>
<li>BLE THREAD Concurrent Static Mode:
<ul>
<li>ID 82777 BLE Thread Static Concurrent Low Power Modes support</li>
</ul></li>
</ul>
<p><strong>Firmware Upgrade Services Binary Table</strong>: Provides Install address for the targeted binary to be used in flash procedure “STEP 5/6” via USB or via SWD/JTAG.</p>
<table style="width:100%;">
<colgroup>
<col style="width: 47%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 6%" />
<col style="width: 3%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_FUS_fw_1_0_2.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td>v1.0.2</td>
<td>04/10/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_FUS_fw.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td><strong>v1.1.0</strong></td>
<td>02/10/2020</td>
</tr>
</tbody>
</table>
<p><strong>Wireless Coprocessor Binary Table</strong>: Provides Install address for the targeted binary to be used in flash procedure “STEP 7” via USB or via SWD/JTAG.</p>
<table style="width:100%;">
<colgroup>
<col style="width: 50%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 4%" />
<col style="width: 3%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_BLE_HCILayer_fw.bin</td>
<td>0x080DC000</td>
<td>0x08068000</td>
<td>0x08028000</td>
<td><strong>v1.8.0</strong></td>
<td>06/19/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Stack_full_fw.bin</td>
<td>0x080CB000</td>
<td>0x08057000</td>
<td>0x08017000</td>
<td><strong>v1.8.0</strong></td>
<td>06/19/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Stack_light_fw.bin</td>
<td>0x080D6000</td>
<td>0x08062000</td>
<td>0x8022000</td>
<td><strong>v1.8.0</strong></td>
<td>06/19/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Thread_static_fw.bin</td>
<td>0x08076000</td>
<td>NA</td>
<td>NA</td>
<td><strong>v1.8.0</strong></td>
<td>06/22/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Zigbee_static_fw.bin</td>
<td>0x0807B000</td>
<td>NA</td>
<td>NA</td>
<td><strong>v1.8.0</strong></td>
<td>06/22/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_Mac_802_15_4_fw.bin</td>
<td>0x080E3000</td>
<td>0x0806F000</td>
<td>0x0802F000</td>
<td><strong>v1.8.0</strong></td>
<td>06/22/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td>0x080EC000</td>
<td>0x08078000</td>
<td>0x08038000</td>
<td>v1.1.0</td>
<td>04/05/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Thread_FTD_fw.bin</td>
<td>0x0809D000</td>
<td>0x08029000</td>
<td>NA</td>
<td><strong>v1.8.0</strong></td>
<td>06/22/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Thread_MTD_fw.bin</td>
<td>0x080B3000</td>
<td>0x0803F000</td>
<td>NA</td>
<td><strong>v1.8.0</strong></td>
<td>06/22/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_Zigbee_FFD_fw.bin</td>
<td>0x080A7000 </td>
<td>0x08033000</td>
<td>NA</td>
<td><strong>v1.8.0</strong></td>
<td>06/22/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Zigbee_RFD_fw.bin</td>
<td>0x080B6000 </td>
<td>0x08042000</td>
<td>NA</td>
<td><strong>v1.8.0</strong></td>
<td>06/22/2020</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section8" aria-hidden="true"> <label for="collapse-section8" aria-hidden="false">V1.6.0 / 27-March-2020</label>
<div>
<h2 id="main-changes-5">Main Changes</h2>
<p><strong>Associated changes in Wireless Coprocessor Binary</strong>:</p>
<ul>
<li>MAC:
<ul>
<li>ID 81423 - Exceeding max Pending Data crashed the board</li>
<li>ID 81426 - Beacon Ind msg wrongly issued</li>
</ul></li>
<li>ZIGBEE:
<ul>
<li>Introducing <strong>stm32wb5x_Zigbee_RFD_fw.bin</strong> (targeted for Zigbee End Device)<br />
</li>
<li>MAC layer bug fixed</li>
</ul></li>
<li>THREAD:
<ul>
<li>Parameter check updates for notification to the application.</li>
<li>ID 80054 - Coap Default Handler fixed</li>
<li>ID 82579 - Some commands such as otLinkGetExtendedAddress return data in the SRAM2a section</li>
</ul></li>
<li>BLE:
<ul>
<li>BLE stack updates:</li>
<li>Fix vulnerability referenced as CVE-2019-19192</li>
<li>ID 82231 - The PESD bit is kept high when BLE Mesh un-provisioning is requested by AT Command</li>
<li>ID 68815 - Min connection interval does not allow scan @ master side</li>
<li>ID 76341 - Ellisys LL/SEC/ADV/BV-03-C test fail due to wrong RPA Timeout value 10.7s vs 10s expected</li>
<li>ID 74352 - STM32WB BLE Stack DoS deadlock vulnerability</li>
<li>ID 81795 - STM32WB BLE stack blocks at some commands following ACI_HAL_RX_START</li>
<li>ID 81758 - Apply specific workarounds and RF trimming parameters when using ACI_HAL_TONE_START</li>
<li>ID 77395 - Ellisys LL/CON/INI/BV-04 issue on connection supervision timeout</li>
<li>ID 82288 - BLE stack: behavior of HCI SC key events in full stack mode</li>
<li>ID 79038 - SMP changes to avoid master pairing without “force rebond” working after bond lost</li>
<li>ID 68859 - Multilink Secure Pairing Collision make pairing failing</li>
<li>ID 75302 - SMP: no more possible from master or slave to redo a new refresh key, or force rebond if master send several GAP_send_pairing_REQ before HCI_ENCRYPTION event issue.</li>
<li>ID 76809 - PTS: SM/MAS/SCOB/BV-01-C issue on GAP_AUTHENTICATON that modifies OOB data</li>
<li>ID 79042 - SMP: bond lost event on master side</li>
<li>ID 81007 - HCI_Data_Buffer_Overflow event to be removed as useless</li>
<li>ID 82059 - BLE stack init: change handling of a too large number of links parameter</li>
</ul></li>
</ul>
<p><strong>Firmware Upgrade Services Binary Table</strong>: Provides Install address for the targeted binary to be used in flash procedure “STEP 5” via USB or “STEP 3” via SWD/JTAG.</p>
<table style="width:100%;">
<colgroup>
<col style="width: 47%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 6%" />
<col style="width: 3%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_FUS_fw_1_0_2.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td>v1.0.2</td>
<td>04/10/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_FUS_fw.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td><strong>v1.1.0</strong></td>
<td>02/10/2020</td>
</tr>
</tbody>
</table>
<p><strong>Wireless Coprocessor Binary Table</strong>: Provides Install address for the targeted binary to be used in flash procedure “STEP 6” via USB or “STEP 4” via SWD/JTAG.</p>
<table style="width:100%;">
<colgroup>
<col style="width: 50%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 4%" />
<col style="width: 3%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_BLE_HCILayer_fw.bin</td>
<td>0x080DC000</td>
<td>0x08068000</td>
<td>0x08028000</td>
<td><strong>v1.6.0</strong></td>
<td>03/27/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Stack_full_fw.bin</td>
<td>0x080CB000</td>
<td>0x08057000</td>
<td>0x08017000</td>
<td><strong>v1.6.0</strong></td>
<td>03/27/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Stack_light_fw.bin</td>
<td>0x80D9000</td>
<td>0x8065000</td>
<td>0x8025000</td>
<td><strong>v1.6.0</strong></td>
<td>03/27/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Thread_fw.bin</td>
<td>0x08078000</td>
<td>NA</td>
<td>NA</td>
<td><strong>v1.6.0</strong></td>
<td>03/27/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Zigbee_FFD_static_fw.bin</td>
<td>0x0807C000</td>
<td>NA</td>
<td>NA</td>
<td><strong>v1.6.0</strong></td>
<td>03/27/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_Mac_802_15_4_fw.bin</td>
<td>0x080E4000</td>
<td>0x08070000</td>
<td>0x08030000</td>
<td><strong>v1.6.0</strong></td>
<td>03/27/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td>0x080EC000</td>
<td>0x08078000</td>
<td>0x08038000</td>
<td>v1.1.0</td>
<td>04/05/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Thread_FTD_fw.bin</td>
<td>0x0809E000</td>
<td>0x0802A000</td>
<td>NA</td>
<td><strong>v1.6.0</strong></td>
<td>03/27/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Thread_MTD_fw.bin</td>
<td>0x080B4000</td>
<td>0x08040000</td>
<td>NA</td>
<td><strong>v1.6.0</strong></td>
<td>03/27/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_Zigbee_FFD_Full_fw.bin</td>
<td>0x080A9000 </td>
<td>0x08035000</td>
<td>NA</td>
<td><strong>v1.6.0</strong></td>
<td>03/27/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Zigbee_RFD_fw.bin</td>
<td>0x080B3000 </td>
<td>0x0803F000</td>
<td>NA</td>
<td><strong>v1.6.0</strong></td>
<td>03/27/2020</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section7" aria-hidden="true"> <label for="collapse-section7" aria-hidden="false">V1.5.0 / 14-February-2020</label>
<div>
<h2 id="main-changes-6">Main Changes</h2>
<p><strong>Associated changes in Wireless Coprocessor Binary</strong>:</p>
<ul>
<li>FUS:
<ul>
<li><strong>New revision</strong></li>
<li>Add Antirollback mechanism: when this option is activated it cannot be reverted and it prevents installation of any older version of firmware (refer to AN5185 for more details)</li>
<li>Add ECC error management (factory reset).</li>
<li>Add Flash corruption error management (factory reset).</li>
<li>Replace the safeboot complete device lock by factory reset.</li>
</ul></li>
<li>Introducing new binary <strong>stm32wb5x_BLE_Zigbee_FFD_static_fw.bin</strong>:
<ul>
<li>Supporting BLE and Zigbee in static mode</li>
</ul></li>
<li>THREAD:
<ul>
<li>Correct the way the OpenThread API parameters are shared between M4 and M0. M4 is no more accessing parameters stored in secure SRAM.</li>
<li>LLD enhancement</li>
<li>Support of External PA</li>
</ul></li>
<li>ZIGBEE:
<ul>
<li>Reducing memory footprint</li>
<li>Fix memory allocation issue</li>
<li>Zigbee stack enhancement (Fix basic cluster string initialization and Fix zb_ipc_m0_zdo_match_desc callback issue)</li>
<li>LLD enhancement</li>
<li>Support of External PA</li>
</ul></li>
<li>MAC 802.15.4:
<ul>
<li>Support of Low Power mode</li>
<li>Fix issue on silent start as device was not able to emit data on such start, SyncLossIndication now provides the right PANID</li>
<li>LLD enhancement</li>
<li>Support of External PA</li>
</ul></li>
<li>BLE:
<ul>
<li>Introduction of new binary <strong>stm32wb5x_BLE_Stack_light_fw.bin</strong> for supporting Slave only (cf previous detailed description).</li>
<li><strong>WARNING</strong>: when using the stm32wb5x_BLE_Stack_light_fw.bin binary, the maximum number of simultaneous connections that the device will support is 2<br />
then #define CFG_BLE_NUM_LINK in app_conf.h shall be updated accordingly.</li>
<li>Erase/Write Flash of Wireless Stack Non Volatile Memory while BLE link is active (Min Interval 28ms)</li>
<li>Fix IFS (Inter Frame Spacing) sometimes longer than 152us</li>
</ul></li>
</ul>
<p><strong>Firmware Upgrade Services Binary Table</strong>: Provides Install address for the targeted binary to be used in flash procedure “STEP 5” via USB or “STEP 3” via SWD/JTAG.</p>
<table style="width:100%;">
<colgroup>
<col style="width: 47%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 14%" />
<col style="width: 6%" />
<col style="width: 3%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_FUS_fw_1_0_2.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td>v1.0.2</td>
<td>04/10/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_FUS_fw.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td><strong>v1.1.0</strong></td>
<td>02/10/2020</td>
</tr>
</tbody>
</table>
<p><strong>Wireless Coprocessor Binary Table</strong>: Provides Install address for the targeted binary to be used in flash procedure “STEP 6” via USB or “STEP 4” via SWD/JTAG.</p>
<table style="width:100%;">
<colgroup>
<col style="width: 50%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 13%" />
<col style="width: 4%" />
<col style="width: 3%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_BLE_HCILayer_fw.bin</td>
<td>0x080DC000</td>
<td>0x08068000</td>
<td>0x08028000</td>
<td><strong>v1.5.0</strong></td>
<td>02/10/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Stack_full_fw.bin</td>
<td>0x080CB000</td>
<td>0x08057000</td>
<td>0x08017000</td>
<td><strong>v1.5.0</strong></td>
<td>02/10/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Stack_light_fw.bin</td>
<td>0x80D9000</td>
<td>0x8065000</td>
<td>0x8025000</td>
<td><strong>v1.5.0</strong></td>
<td>02/10/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Thread_fw.bin</td>
<td>0x08078000</td>
<td>NA</td>
<td>NA</td>
<td><strong>v1.5.0</strong></td>
<td>02/10/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Zigbee_FFD_static_fw.bin</td>
<td>0x0807C000</td>
<td>NA</td>
<td>NA</td>
<td><strong>v1.5.0</strong></td>
<td>02/10/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_Mac_802_15_4_fw.bin</td>
<td>0x080E4000</td>
<td>0x08070000</td>
<td>0x08030000</td>
<td><strong>v1.5.0</strong></td>
<td>02/10/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td>0x080EC000</td>
<td>0x08078000</td>
<td>0x08038000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Thread_FTD_fw.bin</td>
<td>0x0809F000</td>
<td>0x0802B000</td>
<td>NA</td>
<td><strong>v1.5.0</strong></td>
<td>02/10/2020</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Thread_MTD_fw.bin</td>
<td>0x080B4000</td>
<td>0x08040000</td>
<td>NA</td>
<td><strong>v1.5.0</strong></td>
<td>02/10/2020</td>
</tr>
<tr class="even">
<td>stm32wb5x_Zigbee_FFD_Full_fw.bin</td>
<td>0x080A9000 </td>
<td>0x08035000</td>
<td>NA</td>
<td><strong>v1.5.0</strong></td>
<td>02/10/2020</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section6" aria-hidden="true"> <label for="collapse-section6" aria-hidden="false">V1.4.0 / 22-November-2019</label>
<div>
<h2 id="main-changes-7">Main Changes</h2>
<p><strong>Associated changes in Wireless Coprocessor Binary</strong>:</p>
<ul>
<li>ZIGBEE :
<ul>
<li>Reducing memory footprint</li>
<li>Use Hardware Acceleration for AES processing</li>
<li>Improved trace mechanism</li>
</ul></li>
<li>BLE :
<ul>
<li>Add GAP appearance definitions in ble_defs.h</li>
<li>Fix issue with ACI_GATT_[SIGNED_]WRITE_WITHOUT_RESP when ATT packet with a size between 61 and 63 bytes</li>
<li>Improvement of the NVM management</li>
<li>Support of External PA</li>
</ul></li>
<li>MAC 802.15.4 :
<ul>
<li>MAC Promiscuous mode enablement</li>
<li>New MAC/PHY PIB attribute support (TxPower)</li>
</ul></li>
</ul>
<p><strong>Firmware Upgrade Services Binary Table</strong>: Provides Install address for the targeted binary to be used in “STEP 5” of flash procedure.</p>
<table>
<colgroup>
<col style="width: 41%" />
<col style="width: 15%" />
<col style="width: 15%" />
<col style="width: 15%" />
<col style="width: 7%" />
<col style="width: 4%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_FUS_fw.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td>v1.0.2</td>
<td>04/10/2019</td>
</tr>
</tbody>
</table>
<p><strong>Wireless Coprocessor Binary Table</strong>: Provides Install address for the targeted binary to be used in “STEP 6” of flash procedure.</p>
<table>
<colgroup>
<col style="width: 41%" />
<col style="width: 15%" />
<col style="width: 15%" />
<col style="width: 15%" />
<col style="width: 7%" />
<col style="width: 4%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_BLE_HCILayer_fw.bin</td>
<td>0x080DC000</td>
<td>0x08068000</td>
<td>0x08028000</td>
<td><strong>v1.4.0</strong></td>
<td>11/22/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Stack_fw.bin</td>
<td>0x080CB000</td>
<td>0x08057000</td>
<td>0x08017000</td>
<td><strong>v1.4.0</strong></td>
<td>11/22/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Thread_fw.bin</td>
<td>0x08078000</td>
<td>NA</td>
<td>NA</td>
<td><strong>v1.4.0</strong></td>
<td>11/22/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Mac_802_15_4_fw.bin</td>
<td>0x080E5000</td>
<td>0x08071000</td>
<td>0x08031000</td>
<td><strong>v1.4.0</strong></td>
<td>11/22/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td>0x080EC000</td>
<td>0x08078000</td>
<td>0x08038000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Thread_FTD_fw.bin</td>
<td>0x0809F000</td>
<td>0x0802B000</td>
<td>NA</td>
<td><strong>v1.4.0</strong></td>
<td>11/22/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Thread_MTD_fw.bin</td>
<td>0x080B5000</td>
<td>0x08041000</td>
<td>NA</td>
<td><strong>v1.4.0</strong></td>
<td>11/22/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Zigbee_FFD_Full_fw.bin</td>
<td>0x080A3000 </td>
<td>0x0802F000</td>
<td>NA</td>
<td><strong>v1.4.0</strong></td>
<td>11/22/2019</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section5" aria-hidden="true"> <label for="collapse-section5" aria-hidden="true">V1.3.0 / 09-September-2019</label>
<div>
<h2 id="main-changes-8">Main Changes</h2>
<p><strong>Associated changes in Wireless Coprocessor Binary</strong>:</p>
<ul>
<li>ZIGBEE :
<ul>
<li>Introducing support of Zigbee FFD (Full Function Device)</li>
</ul></li>
<li>BLE :
<ul>
<li>Erase Flash while RF activity</li>
<li>BLE Initialization execution time reduced</li>
</ul></li>
<li>THREAD / MAC 802.15.4 :
<ul>
<li>New version of 802.15.4 Low Level Driver</li>
</ul></li>
</ul>
<p><strong>Firmware Upgrade Services Binary Table</strong>: Provides Install address for the targeted binary to be used in “STEP 5” of flash procedure.</p>
<table>
<colgroup>
<col style="width: 41%" />
<col style="width: 15%" />
<col style="width: 15%" />
<col style="width: 15%" />
<col style="width: 7%" />
<col style="width: 4%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_FUS_fw.bin</td>
<td>0x080<strong>EC</strong>000</td>
<td>0x080<strong>7A</strong>000</td>
<td>0x080<strong>3A</strong>000</td>
<td>v1.0.2</td>
<td>04/10/2019</td>
</tr>
</tbody>
</table>
<p><strong>Wireless Coprocessor Binary Table</strong>: Provides Install address for the targeted binary to be used in “STEP 6” of flash procedure.</p>
<table>
<colgroup>
<col style="width: 41%" />
<col style="width: 15%" />
<col style="width: 15%" />
<col style="width: 15%" />
<col style="width: 7%" />
<col style="width: 4%" />
</colgroup>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB5xxG(1M)</th>
<th>STM32WB5xxE(512K)</th>
<th>STM32WB5xxC(256K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_BLE_HCILayer_fw.bin</td>
<td>0x080DC000</td>
<td>0x08068000</td>
<td>0x08028000</td>
<td><strong>v1.3.0</strong></td>
<td>09/09/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_Stack_fw.bin</td>
<td>0x080CB000</td>
<td>0x08057000</td>
<td>0x08017000</td>
<td><strong>v1.3.1</strong></td>
<td>09/24/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Thread_fw.bin</td>
<td>0x08078000</td>
<td>NA</td>
<td>NA</td>
<td><strong>v1.3.1</strong></td>
<td>09/24/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Mac_802_15_4_fw.bin</td>
<td>0x080E5000</td>
<td>0x08071000</td>
<td>0x08031000</td>
<td><strong>v1.3.0</strong></td>
<td>09/09/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td>0x080EC000</td>
<td>0x08078000</td>
<td>0x08038000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Thread_FTD_fw.bin</td>
<td>0x0809F000</td>
<td>0x0802B000</td>
<td>NA</td>
<td><strong>v1.3.1</strong></td>
<td>09/24/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Thread_MTD_fw.bin</td>
<td>0x080B5000</td>
<td>0x08041000</td>
<td>NA</td>
<td><strong>v1.3.1</strong></td>
<td>09/24/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_zigbee_full_fw.bin</td>
<td>0x0808D000 </td>
<td>0x08019000 </td>
<td>NA</td>
<td><strong>v1.3.0</strong></td>
<td>09/09/2019</td>
</tr>
</tbody>
</table>
</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-9">Main Changes</h2>
<p><strong>Associated changes in Wireless Coprocessor Binary</strong>:</p>
<ul>
<li>BLE Link layer : fix issues with pairing</li>
<li>Reception of 2 pairing complete events after failing numeric comparison</li>
<li>Slave_security_req collision with connection update made unstable security</li>
<li>No timeout event after slave req pairing if link key was deleted @ slave side</li>
<li><p>Blackout time should be back to 5sec after bonding OK</p></li>
<li>BLE GATT : improvement of GATT Read event management for certain values of attribute length and ATT_MTU</li>
<li>BLE GATT : Add ACI_GATT_INDICATION_EXT_EVENT</li>
<li>THREAD / MAC 802.15.4 :
<ul>
<li>New version of 802.15.4 Low Level Driver (Tx Power management improvement + API alignment)</li>
</ul></li>
<li>MAC 802.15.4:
<ul>
<li>Updates on robustness and test coverage</li>
</ul></li>
</ul>
<table>
<thead>
<tr class="header">
<th>Firmware Upgrade Services Binary</th>
<th>Device</th>
<th>Install address</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_FUS_fw.bin</td>
<td>STM32WB5xxC(256K)</td>
<td>0x080<strong>3E</strong>000</td>
<td>v1.0.2</td>
<td>04/10/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_FUS_fw.bin</td>
<td>STM32WB5xxE(512K)</td>
<td>0x080<strong>7E</strong>000</td>
<td>v1.0.2</td>
<td>04/10/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_FUS_fw.bin</td>
<td>STM32WB5xxG(1M)</td>
<td>0x080<strong>EC</strong>000</td>
<td>v1.0.2</td>
<td>04/10/2019</td>
</tr>
</tbody>
</table>
<p><strong>Binary Install Address and version</strong> : Provides Install address for the targeted binary to be used in “STEP 5 and STEP 6” of flash procedure.</p>
<table>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>Install address</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_BLE_Stack_fw.bin</td>
<td>0x080CC000</td>
<td><strong>v1.2.0</strong></td>
<td>07/03/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_HCILayer_fw.bin</td>
<td>0x080DC000</td>
<td><strong>v1.2.0</strong></td>
<td>07/03/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Thread_FTD_fw.bin</td>
<td>0x0809F000</td>
<td><strong>v1.2.0</strong></td>
<td>06/25/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Thread_MTD_fw.bin</td>
<td>0x080B5000</td>
<td><strong>v1.2.0</strong></td>
<td>06/25/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Thread_fw.bin</td>
<td>0x08079000</td>
<td><strong>v1.2.0</strong></td>
<td>07/03/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Mac_802_15_4_fw.bin</td>
<td>0x080E4000</td>
<td><strong>v1.2.0</strong></td>
<td>06/25/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td>0x080EC000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section3"  aria-hidden="true"> <label for="collapse-section3" aria-hidden="true">V1.1.1 / 10-May-2019</label>
<div>
<h2 id="main-changes-10">Main Changes</h2>
<p><strong>Associated changes in Firmware Upgrade Services (FUS)</strong>:</p>
<ul>
<li>Add support for STM32WB5xE(512K) and STM32WB5xC(256K) devices.</li>
<li>On STM32WB5xC and STM32WB5xE, 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>
<p>The following table provide the address to use in correspondence with the flash procedure of Wireless Coprocessor Binaries and the device to be used.</p>
<table>
<thead>
<tr class="header">
<th>Firmware Upgrade Services Binary</th>
<th>Device</th>
<th>Install address</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_FUS_fw.bin</td>
<td><strong>STM32WB5xxC</strong>(256K)</td>
<td>0x080<strong>3E</strong>000</td>
<td><strong>v1.0.2</strong></td>
<td>04/10/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_FUS_fw.bin</td>
<td><strong>STM32WB5xxE</strong>(512K)</td>
<td>0x080<strong>7E</strong>000</td>
<td><strong>v1.0.2</strong></td>
<td>04/10/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_FUS_fw.bin</td>
<td><strong>STM32WB5xxG</strong>(1M)</td>
<td>0x080<strong>EC</strong>000</td>
<td><strong>v1.0.2</strong></td>
<td>04/10/2019</td>
</tr>
</tbody>
</table>
<p><strong>Associated changes in Wireless Coprocessor Binary</strong>:</p>
<ul>
<li>BLE System : fix stopMode2 race condition</li>
<li>BLE Security : fix pairing issue with numeric comparison</li>
</ul>
<p><strong>Binary Install Address and version</strong> : Provides Install address for the targeted binary to be used in “STEP 5 and STEP 6” of flash procedure.</p>
<table>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>Install address</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_BLE_Stack_fw.bin</td>
<td>0x080CC000</td>
<td><strong>v1.1.1</strong></td>
<td>05/10/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_HCILayer_fw.bin</td>
<td>0x080DC000</td>
<td><strong>v1.1.1</strong></td>
<td>05/10/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Thread_FTD_fw.bin</td>
<td>0x0809F000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Thread_MTD_fw.bin</td>
<td>0x080B5000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Thread_fw.bin</td>
<td>0x08079000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Mac_802_15_4_fw.bin</td>
<td>0x080E6000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td>0x080EC000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
</tbody>
</table>
</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-11">Main Changes</h2>
<p><strong>Introduction of the Firmware Upgrade Services (FUS)</strong>:</p>
<ul>
<li>This feature is embedded inside stm32wb5x_FUS_fw.bin.</li>
<li><strong>This stm32wb5x_FUS_fw.bin v1.0.1 MUST be installed to use Wireless Coprocessor Binaries v1.1.0.</strong></li>
<li><strong>This stm32wb5x_FUS_fw.bin v1.0.1 CANNOT BE USED with the previous version of Wireless Coprocessor Binary.</strong></li>
<li><strong>All existing Cortex®-M4 user application are compatible without any update.</strong></li>
</ul>
<p>The following table provide the address to use in correspondence with the flash procedure of Wireless Coprocessor Binaries.</p>
<table>
<thead>
<tr class="header">
<th>Firmware Upgrade Services Binary</th>
<th>Install address</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_FUS_fw.bin</td>
<td>0x080EC000 (On top of FUS v0.5.3)</td>
<td><strong>v1.0.1</strong></td>
<td>04/05/2019</td>
</tr>
</tbody>
</table>
<p><strong>Introduction of the Customer Key Storage (CKS)</strong>:</p>
<ul>
<li>All Wireless Coprocessor Binaries embeds this new feature.</li>
<li>The 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>
<p><strong>Associated changes in Wireless Coprocessor Binary</strong>:</p>
<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>
<p><strong>Binary Install Address and version</strong> : Provides Install address for the targeted binary to be used in “STEP 5 and STEP 6” of flash procedure.</p>
<table>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>Install address</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_BLE_Stack_fw.bin</td>
<td>0x080CC000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_HCILayer_fw.bin</td>
<td>0x080DC000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Thread_FTD_fw.bin</td>
<td>0x0809F000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Thread_MTD_fw.bin</td>
<td>0x080B5000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Thread_fw.bin</td>
<td>0x08079000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Mac_802_15_4_fw.bin</td>
<td>0x080E6000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td>0x080EC000</td>
<td><strong>v1.1.0</strong></td>
<td>04/05/2019</td>
</tr>
</tbody>
</table>
</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-12">Main Changes</h2>
<h3 id="first-release">First release</h3>
<p>First official release.</p>
<p><strong>Binary Install Address and version</strong> : Provides Install address for the targeted binary to be used in “STEP 6” of flash procedure.</p>
<table>
<thead>
<tr class="header">
<th>Wireless Processor Binary</th>
<th>Install address</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb5x_BLE_Stack_fw.bin</td>
<td>0x080CB000</td>
<td>v1.0.0</td>
<td>02/06/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_BLE_HCILayer_fw.bin</td>
<td>0x080CD000</td>
<td>v1.0.0</td>
<td>02/06/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_Thread_FTD_fw.bin</td>
<td>0x0809F000</td>
<td>v1.0.0</td>
<td>02/06/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Thread_MTD_fw.bin</td>
<td>0x080B5000</td>
<td>v1.0.0</td>
<td>02/06/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_BLE_Thread_fw.bin</td>
<td>0x08079000</td>
<td>v1.0.0</td>
<td>02/06/2019</td>
</tr>
<tr class="even">
<td>stm32wb5x_Mac_802_15_4_fw.bin</td>
<td>0x080E5000</td>
<td>v1.0.0</td>
<td>02/06/2019</td>
</tr>
<tr class="odd">
<td>stm32wb5x_rfmonitor_phy802_15_4_fw.bin</td>
<td>0x080EA000</td>
<td>v1.0.0</td>
<td>02/06/2019</td>
</tr>
</tbody>
</table>
</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>