forked from STMicroelectronics/STM32CubeWB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Release_Notes.html
5702 lines (5702 loc) · 260 KB
/
Release_Notes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>Release Notes for STM32CubeWB Firmware Package</title>
<style type="text/css">
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
</style>
<link rel="stylesheet" href="_htmresc/mini-st.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<div class="row">
<div class="col-sm-12 col-lg-4">
<div class="card fluid">
<div class="sectione dark">
<center>
<h1 id="release-notes-for-stm32cubewb-firmware-package"><small>Release Notes for</small> STM32CubeWB Firmware Package</h1>
<p>Copyright © 2019 STMicroelectronics<br />
</p>
<a href="https://www.st.com" class="logo"><img src="_htmresc/st_logo.png" alt="ST logo" /></a>
</center>
</div>
</div>
<h1 id="license">License</h1>
<p>This software package is licensed by ST under ST license SLA0048, the “License”; You may not use this package except in compliance with the License. You may obtain a copy of the License at:</p>
<p><a href="http://www.st.com/SLA0048">http://www.st.com/SLA0048</a></p>
<h1 id="purpose">Purpose</h1>
<p><strong>STM32Cube is an STMicroelectronics original initiative to ease developers life by reducing development efforts, time and cost.</mark></strong></p>
<p>STM32Cube covers STM32 portfolio.</p>
<p>STM32Cube Version 1.x includes:</p>
<ul>
<li>The STM32CubeMX, a graphical software configuration tool that allows to generate C initialization code using graphical wizards.</li>
<li>A comprehensive embedded software platform, delivered per series (such as STM32CubeWB for STM32WB series)
<ul>
<li>The STM32Cube HAL, an STM32 abstraction layer embedded software, ensuring maximized portability across STM32 portfolio</li>
<li>A consistent set of middleware components such as RTOS, USB, TCP/IP, Graphics, STM32WPAN</li>
</ul></li>
</ul>
<p>All embedded software utilities come with a full set of examples.</p>
<p>The STM32Cube firmware solution offers a straightforward API with a modular architecture, making it simple to fine tune custom applications and scalable to fit most requirements.</p>
<figure>
<img src="_htmresc/STM32Cube.bmp" alt="STM32Cube" /><figcaption>STM32Cube</figcaption>
</figure>
<p>The HAL (Hardware Abstraction Layer) & LL (Low Layers) drivers provided within this package supports the following STM32WBxx product:</p>
<ul>
<li>STM32WB55xx</li>
<li>STM32WB50xx</li>
<li>STM32WB35xx</li>
<li>STM32WB30xx</li>
<li>STM32WB15xx</li>
<li>STM32WB10xx</li>
</ul>
<p>The HAL and LL drivers provided within this package are compliant with MISRA-C®:2012 guidelines, and have been reviewed with a static analysis tool to eliminate possible run-time errors. Reports are available on demand.</p>
<p>For quick getting started with the STM32CubeWB firmware package, refer to UM2550 and you can download firmware updates and all the latest documentation from www.st.com/stm32cubefw</p>
<p>Here is the list of references to user documents:</p>
<ul>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/DM00492814.pdf">AN5155</a> : STM32Cube MCU Package examples for STM32WB Series</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/dm00513965.pdf">AN5185</a> : ST FW upgrade services for STM32WB</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/dm00556294.pdf">AN5247</a> : Over the air application and wireless firmware update</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/DM00571230.pdf">AN5270</a> : STM32WB BLE wireless Interface</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/DM00598033.pdf">AN5289</a> : Building wireless applications with STM32WB Series microcontrollers</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/DM00600575.pdf">AN5292</a> : How to build a Bluetooth® Low Energy mesh application for STM32WBx5 microcontrollers</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/DM00643581.pdf">AN5379</a> : Examples of AT commands on STM32WB Series microcontrollers</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/DM00704235.pdf">AN5491</a> : Creating Manufacture Zigbee Specific Clusters on STM32WB Series</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/DM00704246.pdf">AN5492</a> : ZigBee persistent data management non-volatile memory for STM32WB Series</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/DM00706938.pdf">AN5498</a> : How to use Zigbee clusters templates on STM32WB Series</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/DM00707537.pdf">AN5500</a> : ZSDK API implementation for ZigBee on STM32WB Series</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/DM00710974.pdf">AN5506</a> : Getting started with ZigBee on STM32WB Series</li>
<li><a href="https://www.st.com/resource/en/programming_manual/dm00716581-stm32wb-ble-stack-programming-guidelines-stmicroelectronics.pdf">PM0271</a> : STM32WB BLE stack programming guidelines</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00105259.pdf">UM1721</a> : Developing Applications on STM32Cube with FatFs.</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00105262.pdf">UM1722</a> : Developing Applications on STM32Cube with RTOS.</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00369109.pdf">UM2180</a> : Getting started with the ST BLE-Mesh Android application</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00477323.pdf">UM2361</a> : Getting started with the ST BLE-Mesh iOS application</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00524025.pdf">UM2442</a> : Description of STM32WB HAL and low-layer drivers.</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00597487.pdf">UM2550</a> : Getting started with STM32CubeWB for STM32WBxx Series.</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00598021.pdf">UM2551</a> : STM32CubeWB Nucleo demonstration firmware</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-section14" checked aria-hidden="true"> <label for="collapse-section14" aria-hidden="true">V1.11.1 / 02-April-2021</label>
<div>
<h2 id="main-changes">Main Changes</h2>
<h3 id="patch-release-for-fus-security-update-and-wireless-protocols-corrections">Patch Release for FUS security update and Wireless protocols corrections</h3>
<ul>
<li>FUS:
<ul>
<li>Add functional security enhancements</li>
</ul></li>
<li>BLE:
<ul>
<li>STM32WB15/WB10 VCO settings update to enhance RX path</li>
<li>Data throughput enhancement on all projects</li>
<li>Ability to reconnect in secure mode on a 2nd link if master database is clear during 1st link connection</li>
<li>Resolution of ACI_GAP_BOND_LOST_Event timeout in case Allow_rebond is not sent</li>
<li>PTS issue ticket done CASE0070853: destination channel ID value above 1000 should be allowed and test passed</li>
<li>BLE_Ota application improved to be SBSFU ready and support Flash driver use / SEM7 flash activity control</li>
</ul></li>
<li>Thread:
<ul>
<li>Power consumption enhancement when running above 3mn in Thread_SED_Coap_Multicast example </li>
</ul></li>
<li>Zigbee:
<ul>
<li>Allow Zigbee stack to go in low power mode after SF timer wrap-around</li>
<li>Add support of 2 new Zigbee FreeRTOS example applications (IAR only):
<ul>
<li>/P-NUCLEO-WB55.Nucleo/Applications/Zigbee/Zigbee_OnOff_Client_Router_FreeRTOS</li>
<li>/P-NUCLEO-WB55.Nucleo/Applications/Zigbee/Zigbee_OnOff_Server_Coord_FreeRTOS </li>
</ul></li>
</ul></li>
<li>MAC 802.15.4:
<ul>
<li>Allow the user to set the PLL <span class="citation" data-cites="64MHz">@64MHz</span> for CM4</li>
</ul></li>
</ul>
<p><br />
</p>
<h2 id="contents">Contents</h2>
<h3 id="projects">Projects</h3>
<p>The STM32CubeWB Firmware package comes with a rich set of examples running on STMicroelectronics boards, organized by board and provided with preconfigured projects for the main supported toolchains.</p>
<p>The exhaustive list of projects and their short description is provided in this table (<a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>).</p>
<ul>
<li><strong>P-NUCLEO-WB55.Nucleo</strong> (<a href="Projects/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a>)</li>
<li><strong>P-NUCLEO-WB55.USBDongle</strong> (<a href="Projects/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a>)</li>
<li>STM32WB5MM-DK (<a href="Projects/STM32WB5MM-DK/Release_Notes.html">release notes</a>)</li>
<li><strong>NUCLEO-WB15CC</strong> (<a href="Projects/NUCLEO-WB15CC/Release_Notes.html">release notes</a>)</li>
</ul>
<p><br />
</p>
<h3 id="components">Components</h3>
<table>
<caption>STM32WBx Firmware Upgrade Services Binary</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_FUS_fw.bin</td>
<td style="text-align: left;"><strong>V1.2.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_FUS_fw_for_fus_0_5_3.bin</td>
<td style="text-align: left;"><strong>V1.2.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_FUS_fw_1_0_2.bin</td>
<td style="text-align: left;">Obsolete</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_FUS_fw.bin</td>
<td style="text-align: left;"><strong>V1.2.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_FUS_fw_1_0_2.bin</td>
<td style="text-align: left;">Obsolete</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>STM32WBxx Coprocessor Wireless Binaries</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_HCI_AdvScan_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_LLD_fw.bin</td>
<td style="text-align: left;">V1.11.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;">V1.11.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Stack_full_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Stack_light_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Thread_dynamic_fw.bin</td>
<td style="text-align: left;">V1.11.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Thread_static_fw.bin</td>
<td style="text-align: left;">V1.11.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Zigbee_FFD_dynamic_fw.bin</td>
<td style="text-align: left;">V1.11.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Zigbee_FFD_static_fw.bin</td>
<td style="text-align: left;">V1.11.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Zigbee_RFD_dynamic_fw.bin</td>
<td style="text-align: left;">V1.11.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Zigbee_RFD_static_fw.bin</td>
<td style="text-align: left;">V1.11.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Phy_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Thread_FTD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Thread_MTD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Zigbee_FFD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Zigbee_RFD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_BLE_HCI_AdvScan_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_BLE_LLD_fw.bin</td>
<td style="text-align: left;">V1.11.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_BLE_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;">V1.11.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_BLE_Stack_full_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_BLE_Stack_light_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_Phy_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_Thread_FTD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_Thread_MTD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_Zigbee_FFD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_Zigbee_RFD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb1x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB1x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb1x_BLE_Stack_full_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB1x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb1x_BLE_Stack_light_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB1x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb1x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;">V1.11.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB1x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb1x_BLE_HCI_AdvScan_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB1x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb1x_BLE_LLD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.1</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB1x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb1x_BLE_Stack_full_fw.bin</td>
<td style="text-align: left;">V1.11.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB1x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb1x_BLE_Stack_light_fw.bin</td>
<td style="text-align: left;">V1.11.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB1x/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td>V5.6.0</td>
<td><a href="Drivers/CMSIS/LICENSE.txt">Apache License 2.0</a></td>
<td><a href="Drivers/CMSIS/README.md">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32WB CMSIS</td>
<td>V1.8.0</td>
<td><a href="Drivers/CMSIS/LICENSE.txt">Apache License 2.0</a></td>
<td><a href="Drivers/CMSIS/Device/ST/STM32WBxx/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32WBxx_HAL_Driver</td>
<td>V1.8.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/STM32WBxx_HAL_Driver/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">P-NUCLEO-WB55.USBDongle</td>
<td>V1.0.2</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">P-NUCLEO-WB55.Nucleo</td>
<td>V1.0.2</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32WB5MM-DK</td>
<td>V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/STM32WB5MM-DK/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">NUCLEO-WB15CC</td>
<td>V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/NUCLEO-WB15CC/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Common</td>
<td>V7.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/Common/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP stts22h</td>
<td>V1.1.1</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/hts221/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP ism330dhcx</td>
<td>V1.0.2</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/ism330dlc/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP ssd1315</td>
<td>V2.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/ssd1315/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP s25fl128s</td>
<td>V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Drivers/BSP/Components/s25fl128s/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32 USB Device Library</td>
<td style="text-align: left;">V2.7.1</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_USB_Device_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32 WPAN</td>
<td style="text-align: left;">V1.11.0</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_WPAN/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FatFS</td>
<td style="text-align: left;">R0.12c</td>
<td><a href="Middlewares/Third_Party/FatFs/doc/en/appnote.html#license">FatFs License</a></td>
<td><a href="Middlewares/Third_Party/FatFs/doc/updates.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20191011</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FatFs/src/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FreeRTOS</td>
<td style="text-align: left;">V10.2.1</td>
<td><a href="Middlewares/Third_Party/FreeRTOS/License/license.txt">MIT</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/readme.txt">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"></td>
<td style="text-align: left;">ST modified 20200831</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/Third_Party/FreeRTOS/Source/st_readme.txt">release notes ST</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32_TouchSensing_Library</td>
<td style="text-align: left;">V2.2.5</td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
<td><a href="Middlewares/ST/STM32_TouchSensing_Library/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">PDM</td>
<td style="text-align: left;">v3.3.0</td>
<td><a href="http://www.st.com/SLA0047">SLA0047</a></td>
<td><a href="Middlewares/ST/STM32_Audio/Addons/PDM/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Utilities</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">CPU</td>
<td style="text-align: left;">V1.1.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/CPU/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">Fonts</td>
<td style="text-align: left;">V2.0.2</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Fonts/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">Log</td>
<td style="text-align: left;">V1.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Log/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">conf</td>
<td style="text-align: left;">V1.4.1</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/conf/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">lpm</td>
<td style="text-align: left;">V1.3.1</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/lpm/tiny_lpm/Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sequencer</td>
<td style="text-align: left;">V1.5.1</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/sequencer/Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">LCD</td>
<td style="text-align: left;">V2.0.0</td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
<td><a href="Utilities/Log/Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations">Known Limitations</h2>
<ul>
<li>FUS upgrade:
<ul>
<li><strong>If Anti-Rollback needs to be activated, please make sure to activate it only after installing the latest FUS version (>= V1.2.0)</strong> <strong>and after successfully installing a wireless stack (without deleting it).</strong> <strong>Otherwise, further wireless stack installation will be blocked.</strong></li>
</ul></li>
<li><p>stm32wb5x_BLE_Zigbee_FFD_static_fw.bin and stm32wb5x_BLE_Zigbee_RFD_static_fw.bin:</p>
<ul>
<li>When using the static concurrent mode BLE/Zigbee binaries, due to a memory leak inside Zigbee shutdown procedure, the number of transitions from Zigbee to BLE is limited. This number depends on the available memory for the application. For instance, the BLE_Zigbee_Static application, available inside this package, faces this limitation after 10 transition average.</li>
<li>The workaround is to rely on the dynamic concurrent mode provided by stm32wb5x_BLE_Zigbee_FFD_dynamic_fw.bin which is not facing this limitation.</li>
<li>This limitation will be corrected inside a future release and is referenced under ID95417.</li>
</ul></li>
<li><p>Application Zigbee_Commissioning_Server_Router:</p>
<ul>
<li>For STM32CubeIDE project, some elements inside the traces are not correctly displayed (uint64_t formatting only). Not observable on IAR and MDK-ARM project.</li>
</ul></li>
<li>The stm32wb5x_BLE_Zigbee_RFD_dynamic_fw coprocessor wireless binary must be flashed only using the USB interface (as defined in the release note located in the STM32WB_Copro_Wireless_Binaries folder). It is not possible to flash this binary via ST-LINK.</li>
<li><p>BLE_DataThroughput known throughput limitation at 2M PHY with Cube IDE project in debug configuration</p></li>
</ul>
<h2 id="development-toolchains-and-compilers">Development Toolchains and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.20.2 + ST-Link</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.25 + ST-Link</li>
<li>STM32CubeIDE toolchain V1.4.0 + ST-Link</li>
</ul>
<h2 id="supported-devices-and-boards">Supported Devices and boards</h2>
<ul>
<li>STM32WB55xx, STM32WB50xx, STM32WB35xx, STM32WB30xx, STM32WB15xx and STM32WB10xx devices.</li>
<li>P-NUCLEO-WB55 kit composed of P-NUCLEO-WB55.Nucleo and P-NUCLEO-WB55.USBDongle.</li>
<li>STM32WB5MM-DK board</li>
<li>NUCLEO-WB15CC board</li>
</ul>
<h2 id="dependencies">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li>STM32WB_Copro_Wireless_Binaries available under Projects/STM32WB_Copro_Wireless_Binaries</li>
</ul>
<p>Several applications (BLE (Bluetooth low energy), Thread or Mac 802-15-4) are available under:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications</li>
<li>Projects/NUCLEO-WB15CC/Applications</li>
</ul>
<p>All of them are provided in source code and some of them are also available in binary format directly for ready to use usage:</p>
<ul>
<li>Projects/P-NUCLEO-WB55.Nucleo/Applications/xxx/Binary/<projectName>.hex</li>
<li>Projects/P-NUCLEO-WB55.USBDongle/Applications/xxx/Binary/<projectName>.hex</li>
<li>Projects/NUCLEO-WB15CC/Applications/xxx/Binary/<projectName>.hex</li>
</ul>
<p>Each of them require a different coprocessor binary in order to behave correctly. This is documented inside each readme.txt of those applications.</p>
<p>For a detailed explanation on how to use and how to flash them, you can refer to:</p>
<ul>
<li><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note for STM32WB5x</a></li>
<li><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note for STM32WB3x</a></li>
<li><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB1x/Release_Notes.html">release note for STM32WB1x</a></li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section13" aria-hidden="true"> <label for="collapse-section13" aria-hidden="true">V1.11.0 / 12-February-2021</label>
<div>
<h2 id="main-changes-1">Main Changes</h2>
<h3 id="add-new-devices-stm32wb15xx-stm32wb10xx-and-new-boards-stm32wb5mm-dk-and-nucleo-wb15cc">Add new devices STM32WB15xx, STM32WB10xx and new boards STM32WB5MM-DK and NUCLEO-WB15CC</h3>
<ul>
<li>Introduce HAL, LL and STM32WPAN support for stm32wb15xx and stm32wb10xx</li>
<li>Introduce STM32WB5MM-DK and NUCLEO-WB15CC BSP support
<ul>
<li>Add associated SW component for devices present on the boards. (stts22h, ism330dhcx, ssd1315, s25fl128s)</li>
<li>Several examples and applications projects are provided, generated with the STM32CubeMX 6.2.0 tool to initialize the system, peripherals and middleware stacks.</li>
<li>Those projects are provided ready to use with IAR, KEIL and STM32CubeIDE</li>
</ul></li>
<li>Add examples associated to STM32WB5MM-DK and NUCLEO-WB15CC (HAL/LL/wireless applications)</li>
<li>Removed Adafruit shield support for introduction of STM32WB5MM-DK in BSP V2 format:
<ul>
<li>The 2 features are incompatible</li>
<li>Removed associated applications:
<ul>
<li>Projects\P-NUCLEO-WB55.Nucleo\Applications\FatFs\FatFs_uSD_Standalone</li>
<li>Projects\P-NUCLEO-WB55.Nucleo\Applications\USB_Device\MSC_Standalone</li>
<li>Projects\P-NUCLEO-WB55.Nucleo\Demonstrations\Adafruit_LCD_1_8_SD_Joystick</li>
</ul></li>
</ul></li>
<li>Add UART Console example to demonstrate how to send and receive characters using standard C library.</li>
<li>Add UART Reception to IDLE event example to demonstrate the HAL UART API for reception to IDLE event in circular DMA mode.</li>
<li>BLE-Mesh library version 1.13.002:
<ul>
<li>Updated max number of element to 5 and max number of Model per element to 11 (support lighting control system with occupancy sensing). </li>
<li>Bug fix: Client API, Light LC model and sensor status, modify Light LC FSM default Lightness values</li>
<li>Sensor & Light LC Server Models updated</li>
<li>Client Models updated</li>
<li>Config Model APIs callbacks added over application layer</li>
<li>Save & Restore APIs for Models parameters in Flash updated</li>
<li>Publication enabled for multiple elements</li>
<li>Remove double disconnection to accelerate provisioning with IOS ST BLE Mesh App version 1.08.001</li>
<li>Bug correction during unprovisioning with ST BLE Mesh App of non GATT connected Nodes. </li>
</ul></li>
<li>BLE:
<ul>
<li>HID: added: Battery Service and Device Information Service, connection and disconnection events - 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</li>
<li>ID 95186: SHCI_C2_FUS_GetState fixed to identify when wireless stack running (with correct error code)</li>
</ul></li>
<li>THREAD:
<ul>
<li>Update OpenThread stack to <strong>SHA-1: 3dbd91aa2b70c7d5cc71b2c465ce3583a13dea79</strong> (thread-reference-20191113)</li>
<li>ID 91270: CoapSecure support added</li>
<li>ID 96955: Fix for entering standby mode while Thread stop procedure is called. New system command SHCI_C2_802_15_4_DeInit added</li>
</ul></li>
<li>Zigbee:
<ul>
<li>Clarification of PICS information inside the Clusters API interface include files </li>
<li>New directory structure used to store Clusters API interfaces include files</li>
<li>Range input parameter checks added when managing Clusters</li>
<li>ZCL Commissioning Cluster improvement to allow joining commissioning network and sending unicast frames (as well as Inter-PAN)</li>
<li>Support of a Custom Cluster (Refer to the appropriate applications to see how to use it : Zigbee_custom_ls_Server_Coord, and Zigbee_custom_ls_Client_Router)</li>
<li>Support of new APIs to control TouchLink features (Refer to zcl.touchlink.h file for more details). Adding of TouchLink utility commands</li>
<li>Minor fixes in DRLC, Voice over Zigbee & RSSI location Clusters</li>
</ul></li>
</ul>
<h2 id="contents-1">Contents</h2>
<h3 id="projects-1">Projects</h3>
<p>The STM32CubeWB Firmware package comes with a rich set of examples running on STMicroelectronics boards, organized by board and provided with preconfigured projects for the main supported toolchains.</p>
<p>The exhaustive list of projects and their short description is provided in this table (<a href="Projects/STM32CubeProjectsList.html">STM32CubeProjectsList.html</a>).</p>
<ul>
<li><strong>P-NUCLEO-WB55.Nucleo</strong> (<a href="Projects/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release notes</a>)</li>
<li><strong>P-NUCLEO-WB55.USBDongle</strong> (<a href="Projects/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release notes</a>)</li>
<li><strong>STM32WB5MM-DK</strong> (<a href="Projects/STM32WB5MM-DK/Release_Notes.html">release notes</a>)</li>
<li><strong>NUCLEO-WB15CC</strong> (<a href="Projects/NUCLEO-WB15CC/Release_Notes.html">release notes</a>)</li>
</ul>
<h3 id="components-1">Components</h3>
<table>
<caption>STM32WBx Firmware Upgrade Services Binary</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_FUS_fw_1_0_2.bin</td>
<td style="text-align: left;">V1.0.2</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_FUS_fw.bin</td>
<td style="text-align: left;"><strong>V1.1.2</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_FUS_fw_1_0_2.bin</td>
<td style="text-align: left;">V1.0.2</td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_FUS_fw.bin</td>
<td style="text-align: left;"><strong>V1.1.2</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>STM32WBxx Coprocessor Wireless Binaries</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>License</th>
<th>Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_HCI_AdvScan_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_LLD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Stack_full_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Stack_light_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Thread_dynamic_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Thread_static_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Zigbee_FFD_dynamic_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Zigbee_FFD_static_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_BLE_Zigbee_RFD_dynamic_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_BLE_Zigbee_RFD_static_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Phy_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Thread_FTD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Thread_MTD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb5x_Zigbee_FFD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb5x_Zigbee_RFD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_BLE_HCI_AdvScan_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_BLE_LLD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_BLE_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_BLE_Stack_full_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_BLE_Stack_light_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_Mac_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_Phy_802_15_4_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_Thread_FTD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_Thread_MTD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb3x_Zigbee_FFD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb3x_Zigbee_RFD_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB3x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb1x_BLE_HCILayer_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB1x/Release_Notes.html">release note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">stm32wb1x_BLE_Stack_full_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB1x/Release_Notes.html">release note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">stm32wb1x_BLE_Stack_light_fw.bin</td>
<td style="text-align: left;"><strong>V1.11.0</strong></td>
<td><a href="http://www.st.com/SLA0044">SLA0044 (binary release)</a></td>
<td><a href="Projects/STM32WB_Copro_Wireless_Binaries/STM32WB1x/Release_Notes.html">release note</a></td>
</tr>