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

Release_Notes.html « STM32WB3x « STM32WB_Copro_Wireless_Binaries « Projects - github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 697c208e52f7ffd43414a4f0b419805103304eca (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
<!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="purpose">Purpose</h1>
<p>This release covers the delivery of STM32WB Coprocessor binaries.</p>
<p>Here is the list of the supported binaries:</p>
<ul>
<li>stm32wb3x_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>stm32wb3x_BLE_Stack_full_fw.bin
<ul>
<li>Full BLE Stack 5.0 certified : Link Layer, HCI, L2CAP, ATT, SM, GAP and GATT database</li>
<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 / 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>stm32wb3x_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>Legacy Pairing</li>
<li>HCI interface (reduced)</li>
<li>Direct Test Mode</li>
</ul></li>
</ul></li>
</ul></li>
<li>stm32wb3x_BLE_HCILayer_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>
</ul></li>
<li>stm32wb3x_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>stm32wb3x_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>stm32wb3x_Mac_802_15_4_fw.bin
<ul>
<li>MAC API is based on latest official <a href="http://grouper.ieee.org/groups/802/15/pub/Download.html">IEEE Std 802.15.4-2011</a></li>
<li>To be used for MAC FFD and RFD devices</li>
</ul></li>
<li>stm32wb3x_FUS_fw_1_0_2.bin
<ul>
<li>Firmware Upgrade Services (FUS)</li>
<li>This binary is the utility to flash the Wireless Coprocessor Binaries.</li>
<li>FUS version v1.0.2</li>
</ul></li>
<li>stm32wb3x_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 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.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 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>
</ul></li>
<li><p>STEP 3 : Delete current wireless stack</p>
<ul>
<li><em>STM32_Programmer_CLI.exe -c port=usb1 -fwdelete</em></li>
</ul></li>
<li>STEP 4 : Read and upgrade FUS Version
<ul>
<li><em>STM32_Programmer_CLI.exe -c port=usb1 -r32 0x20030030 1</em>
<ul>
<li><em>0x20030030 : 00050300</em> : FUSv0.5.3 =&gt; <strong>Must be updated using STEP 5.</strong></li>
<li><em>0x20030030 : 01000100 or 01000200</em> : FUSv1.0.x =&gt; <strong>Must be updated using STEP 6.</strong></li>
<li><em>0x20030030 : 01010200</em> : FUSv1.1.2 =&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 FUS 1.0.2 (stm32wb3x_FUS_fw_1_0_2.bin):</p>
<ul>
<li><em>STM32_Programmer_CLI.exe -c port=usb1 -fwupgrade stm32wb3x_FUS_fw_1_0_2.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></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=usb1 -fwupgrade [Wireless_Coprocessor_Binary] [Install@] firstinstall=1</em></li>
</ul>
<p>Please check <strong>Wireless Coprocessor Binary Table</strong> for Install@ parameter depending of the binary.</p></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.4.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: Delete current wireless stack</p>
<ul>
<li><em>STM32_Programmer_CLI.exe -c port=swd -fwdelete</em></li>
</ul></li>
<li><p>STEP 4 : Read and upgrade FUS Version (if unknown FUS version)</p>
<ul>
<li>it can been obtained with Transparent Mode application from STM32CubeMonitor-RF interface or using other flashing method via USB described in RN.
<ul>
<li><em>0x20030030 : 00050300</em> : FUSv0.5.3 =&gt; <strong>Must be updated using STEP 5.</strong></li>
<li><em>0x20030030 : 01000100 or 01000200</em> : FUSv1.0.x =&gt; <strong>Must be updated using STEP 6.</strong></li>
<li><em>0x20030030 : 01010200</em> : FUSv1.1.2 =&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 FUS v1.0.2:</p>
<ul>
<li><em>STM32_Programmer_CLI.exe -c port=swd mode=UR -fwupgrade stm32wb3x_FUS_fw_1_0_2.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=1</em></li>
</ul>
<p>Please check <strong>Wireless Coprocessor Binary Table</strong> for Install@ parameter depending of the binary.</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 (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.4.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>open STM32CubeProgrammer GUI and select “USB”</li>
<li>in USB configuration: (Port: USB1) then select “Connect”</li>
</ul></li>
<li><p>STEP 3 : Delete current wireless stack</p>
<ul>
<li>in Firmware Upgrade Services: select “Delete Firmware”</li>
</ul></li>
<li><p>STEP 4 : Read and upgrade FUS Version</p>
<ul>
<li>in Firmware Upgrade Services: select “Read FUS state”
<ul>
<li><em>0x20030030 : 00050300</em> : FUSv0.5.3 =&gt; <strong>Must be updated using STEP 5.</strong></li>
<li><em>0x20030030 : 01000100 or 01000200</em> : FUSv1.0.x =&gt; <strong>Must be updated using STEP 6.</strong></li>
<li><em>0x20030030 : 01010200</em> : FUSv1.1.2 =&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 FUS v1.0.2 :</p>
<ul>
<li>in Firmware Upgrade Service: (File Path: [stm32wb3x_FUS_fw_1_0_2.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 :</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 (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.4.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: Delete current wireless stack</p>
<ul>
<li>in Firmware Upgrade Services: select “Delete Firmware”</li>
</ul></li>
<li><p>STEP 4 : Read and upgrade FUS Version (if unknown FUS version)</p>
<ul>
<li>it can been obtained with Transparent Mode application from STM32CubeMonitor-RF interface or using other flashing method via USB described in RN.
<ul>
<li><em>0x20030030 : 00050300</em> : FUSv0.5.3 =&gt; <strong>Must be updated using STEP 5.</strong></li>
<li><em>0x20030030 : 01000100 or 01000200</em> : FUSv1.0.x =&gt; <strong>Must be updated using STEP 6.</strong></li>
<li><em>0x20030030 : 01010200</em> : FUSv1.1.2 =&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 FUS v1.0.2 :</p>
<ul>
<li>in Firmware Upgrade Services: (File Path: [stm32wb3x_FUS_fw_1_0_2.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 :</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 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 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-section5" checked aria-hidden="true"> <label for="collapse-section5" aria-hidden="true">V1.10.1 / 15-January-2021</label>
<div>
<h2 id="main-changes">Main Changes</h2>
<p><strong>Associated changes in Wireless Coprocessor Binary</strong>:</p>
<ul>
<li>New FUS version (v1.1.2):
<ul>
<li>Add protection from PKA attack</li>
<li>Allow larger image upgrade with lower flash size</li>
<li>Add protection from main attack</li>
<li>Add backup user keys afer FUS upgrade</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>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB3x(512K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb3x_FUS_fw_1_0_2.bin</td>
<td>0x080<strong>7A</strong>000</td>
<td>v1.0.2</td>
<td>04/10/2019</td>
</tr>
<tr class="even">
<td>stm32wb3x_FUS_fw.bin</td>
<td>0x080<strong>7A</strong>000</td>
<td><strong>v1.1.2</strong></td>
<td>01/15/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>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB3x(512K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb3x_BLE_HCI_AdvScan_fw.bin</td>
<td>0x0806a000</td>
<td><strong>v1.10.0</strong></td>
<td>10/26/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_BLE_HCILayer_fw.bin</td>
<td>0x08060000</td>
<td><strong>v1.10.0</strong></td>
<td>10/26/2020</td>
</tr>
<tr class="odd">
<td>stm32wb3x_BLE_Stack_full_fw.bin</td>
<td>0x0804b000</td>
<td><strong>v1.10.0</strong></td>
<td>10/26/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_BLE_Stack_light_fw.bin</td>
<td>0x08056000</td>
<td><strong>v1.10.0</strong></td>
<td>10/26/2020</td>
</tr>
<tr class="odd">
<td>stm32wb3x_Mac_802_15_4_fw.bin</td>
<td>0x08063000</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_Thread_FTD_fw.bin</td>
<td>0x0801B000</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="odd">
<td>stm32wb3x_Thread_MTD_fw.bin</td>
<td>0x08031000</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-section4" aria-hidden="true"> <label for="collapse-section4" aria-hidden="true">V1.10.0 / 26-October-2020</label>
<div>
<h2 id="main-changes-1">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>
</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>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB3x(512K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb3x_FUS_fw_1_0_2.bin</td>
<td>0x080<strong>7A</strong>000</td>
<td>v1.0.2</td>
<td>04/10/2019</td>
</tr>
<tr class="even">
<td>stm32wb3x_FUS_fw.bin</td>
<td>0x080<strong>7A</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>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB3x(512K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb3x_BLE_HCI_AdvScan_fw.bin</td>
<td>0x0806a000</td>
<td><strong>v1.10.0</strong></td>
<td>10/26/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_BLE_HCILayer_fw.bin</td>
<td>0x08060000</td>
<td><strong>v1.10.0</strong></td>
<td>10/26/2020</td>
</tr>
<tr class="odd">
<td>stm32wb3x_BLE_Stack_full_fw.bin</td>
<td>0x0804b000</td>
<td><strong>v1.10.0</strong></td>
<td>10/26/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_BLE_Stack_light_fw.bin</td>
<td>0x08056000</td>
<td><strong>v1.10.0</strong></td>
<td>10/26/2020</td>
</tr>
<tr class="odd">
<td>stm32wb3x_Mac_802_15_4_fw.bin</td>
<td>0x08063000</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_Thread_FTD_fw.bin</td>
<td>0x0801B000</td>
<td><strong>v1.10.0</strong></td>
<td>10/15/2020</td>
</tr>
<tr class="odd">
<td>stm32wb3x_Thread_MTD_fw.bin</td>
<td>0x08031000</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-section4" aria-hidden="true"> <label for="collapse-section4" aria-hidden="true">V1.9.0 / 21-September-2020</label>
<div>
<h2 id="main-changes-2">Main Changes</h2>
<p><strong>Associated changes in Wireless Coprocessor Binary</strong>:</p>
<ul>
<li>Introducing following new binary:</li>
<li><p><strong>stm32wb3x_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</p></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>
</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>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB3x(512K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb3x_FUS_fw_1_0_2.bin</td>
<td>0x080<strong>7A</strong>000</td>
<td>v1.0.2</td>
<td>04/10/2019</td>
</tr>
<tr class="even">
<td>stm32wb3x_FUS_fw.bin</td>
<td>0x080<strong>7A</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>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB3x(512K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb3x_BLE_HCI_AdvScan_fw.bin</td>
<td>0x08076000</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_BLE_HCILayer_fw.bin</td>
<td>0x0806c000</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="odd">
<td>stm32wb3x_BLE_Stack_full_fw.bin</td>
<td>0x08057000</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_BLE_Stack_light_fw.bin</td>
<td>0x08061000</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="odd">
<td>stm32wb3x_Mac_802_15_4_fw.bin</td>
<td>0x0805C000</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_Thread_FTD_fw.bin</td>
<td>0x0801B000</td>
<td><strong>v1.9.0</strong></td>
<td>09/21/2020</td>
</tr>
<tr class="odd">
<td>stm32wb3x_Thread_MTD_fw.bin</td>
<td>0x08031000</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-section3" aria-hidden="true"> <label for="collapse-section3" aria-hidden="true">V1.8.0 / 22-June-2020</label>
<div>
<h2 id="main-changes-3">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>THREAD:
<ul>
<li>ID 75709 - [LowPower] Improve SFTimer wrap around time</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>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB3x(512K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb3x_FUS_fw_1_0_2.bin</td>
<td>0x080<strong>7A</strong>000</td>
<td>v1.0.2</td>
<td>04/10/2019</td>
</tr>
<tr class="even">
<td>stm32wb3x_FUS_fw.bin</td>
<td>0x080<strong>7A</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>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB3x(512K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb3x_BLE_HCILayer_fw.bin</td>
<td>0x08068000</td>
<td><strong>v1.8.0</strong></td>
<td>06/22/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_BLE_Stack_full_fw.bin</td>
<td>0x08057000</td>
<td><strong>v1.8.0</strong></td>
<td>06/22/2020</td>
</tr>
<tr class="odd">
<td>stm32wb3x_BLE_Stack_light_fw.bin</td>
<td>0x08062000</td>
<td><strong>v1.8.0</strong></td>
<td>06/22/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_Mac_802_15_4_fw.bin</td>
<td>0x0806F000</td>
<td><strong>v1.8.0</strong></td>
<td>06/22/2020</td>
</tr>
<tr class="odd">
<td>stm32wb3x_Thread_FTD_fw.bin</td>
<td>0x08029000</td>
<td><strong>v1.8.0</strong></td>
<td>06/22/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_Thread_MTD_fw.bin</td>
<td>0x0803F000</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-section2" aria-hidden="true"> <label for="collapse-section2" aria-hidden="true">V1.6.0 / 27-March-2020</label>
<div>
<h2 id="main-changes-4">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>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>Binary Install Address and version</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>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB3x(512K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb3x_BLE_HCILayer_fw.bin</td>
<td>0x805C000</td>
<td><strong>v1.6.0</strong></td>
<td>03/27/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_BLE_Stack_full_fw.bin</td>
<td>0x804B000</td>
<td><strong>v1.6.0</strong></td>
<td>03/27/2020</td>
</tr>
<tr class="odd">
<td>stm32wb3x_BLE_Stack_light_fw.bin</td>
<td>0x8059000</td>
<td><strong>v1.6.0</strong></td>
<td>03/27/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_Mac_802_15_4_fw.bin</td>
<td>0x8064000</td>
<td><strong>v1.6.0</strong></td>
<td>03/27/2020</td>
</tr>
<tr class="odd">
<td>stm32wb3x_Thread_FTD_fw.bin</td>
<td>0x801E000</td>
<td><strong>v1.6.0</strong></td>
<td>03/27/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_Thread_MTD_fw.bin</td>
<td>0x8034000</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-section1" aria-hidden="true"> <label for="collapse-section1" aria-hidden="true">V1.5.0 / 14-February-2020</label>
<div>
<h2 id="main-changes-5">Main Changes</h2>
<p><strong>Associated changes in Wireless Coprocessor Binary</strong>:</p>
<ul>
<li>Initial version of Wireless Coprocessor Binary compatible with STM32WB3x.</li>
<li>Thread
<ul>
<li>Support of Thread stack on STM32WB35 in FFD and RFD configurations (two separate binaries)<br />
</li>
</ul></li>
<li>MAC
<ul>
<li>Support of 802_15_4 MAC stack on STM32WB35</li>
</ul></li>
<li>BLE
<ul>
<li>Introduction of new binary <strong>stm32wb3x_BLE_Stack_light_fw.bin</strong> for supporting Slave only (cf previous detailed description).</li>
<li><strong>WARNING</strong>: when using the stm32wb3x_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>Binary Install Address and version</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>
<thead>
<tr class="header">
<th>Wireless Coprocessor Binary</th>
<th>STM32WB3x(512K)</th>
<th>Version</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>stm32wb3x_BLE_HCILayer_fw.bin</td>
<td>0x805C000</td>
<td><strong>v1.5.0</strong></td>
<td>02/10/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_BLE_Stack_full_fw.bin</td>
<td>0x804B000</td>
<td><strong>v1.5.0</strong></td>
<td>02/10/2020</td>
</tr>
<tr class="odd">
<td>stm32wb3x_BLE_Stack_light_fw.bin</td>
<td>0x8059000</td>
<td><strong>v1.5.0</strong></td>
<td>02/10/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_Mac_802_15_4_fw.bin</td>
<td>0x8064000</td>
<td><strong>v1.5.0</strong></td>
<td>02/10/2020</td>
</tr>
<tr class="odd">
<td>stm32wb3x_Thread_FTD_fw.bin</td>
<td>0x801F000</td>
<td><strong>v1.5.0</strong></td>
<td>02/10/2020</td>
</tr>
<tr class="even">
<td>stm32wb3x_Thread_MTD_fw.bin</td>
<td>0x8034000</td>
<td><strong>v1.5.0</strong></td>
<td>02/10/2020</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>