-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRelease_Notes.html
1736 lines (1736 loc) · 78.8 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 FP-SNS-FLIGHT1 STM32Cube Function Pack</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]-->
<link rel="icon" type="image/x-icon" href="_htmresc/favicon.png" />
</head>
<body>
<div class="row">
<div class="col-sm-12 col-lg-4">
<center>
<h1 id="release-notes-for-fp-sns-flight1-software-for-stm32"><small>Release Notes for</small> <strong>FP-SNS-FLIGHT1 Software for STM32</strong></h1>
<p>Copyright © 2025 STMicroelectronics<br />
</p>
<a href="https://www.st.com" class="logo"><img src="_htmresc/st_logo.png" alt="ST logo" /></a>
</center>
<h1 id="purpose">Purpose</h1>
<p>The <strong>FP-SNS-FLIGHT1</strong> is an STM32Cube function pack which lets you connect your IoT node to a smartphone via BLE and use a suitable Android or iOS like the ST BLE Sensor app (Android Version 5.2.0 - iOS 5.2.0 or higher) to view real-time time-of-flight sensors data. This package, together with the suggested combination of STM32 and ST devices can be used to develop specific wearable applications, or smart things applications in general. The software runs on the STM32 microcontroller and includes all the necessary drivers to recognize the devices on the STM32 Nucleo development board and expansion boards.</p>
<p>The expansion is built on STM32Cube software technology to ease portability across different STM32 microcontrollers.</p>
<h1 id="fp-sns-flight1-software-features">FP-SNS-FLIGHT1 software features:</h1>
<ul>
<li><p>The FP-SNS-FLIGHT1 Firmware could be updated Over-The-Air (FOTA) using the the Android/iOS device with the ST BLE Sensor Android/iOS application.</p></li>
<li><p>Easy portability across different MCU families, thanks to STM32Cube</p></li>
<li><p>Free, user-friendly license terms</p></li>
</ul>
<p>This firmware package includes Components Device Drivers, Board Support Package and example application for the STMicroelectronics:</p>
<ul>
<li>NUCLEO-F401RE nucleo development board and expansion boards:
<ul>
<li>X-NUCLEO-BNRG2A1 Bluetooth Low Energy expansion board based on the BLUENRG-M2SP module for STM32</li>
<li>X-NUCLEO-53L3A2 Multi-targets ranging sensor expansion board based on VL53L3CX for STM32 Nucleo</li>
</ul></li>
<li>NUCLEO-F401RE nucleo development board and expansion boards:
<ul>
<li>X-NUCLEO-BNRG2A1 Bluetooth Low Energy expansion board based on the BLUENRG-M2SP module for STM32 Nucleo</li>
<li>VL53L3CX-SATEL Breakout board with VL53L3CX multi-target detection ToF ranging sensor for easy integration into customer device.</li>
</ul></li>
<li>NUCLEO-L476RG nucleo development board and expansion boards:
<ul>
<li>X-NUCLEO-BNRG2A1 Bluetooth Low Energy expansion board based on the BLUENRG-M2SP module for STM32</li>
<li>X-NUCLEO-53L3A2 Multi-targets ranging sensor expansion board based on VL53L3CX for STM32 Nucleo</li>
</ul></li>
<li>NUCLEO-L476RG nucleo development board and expansion boards:
<ul>
<li>X-NUCLEO-BNRG2A1 Bluetooth Low Energy expansion board based on the BLUENRG-M2SP module for STM32 Nucleo</li>
<li>VL53L3CX-SATEL Breakout board with VL53L3CX multi-target detection ToF ranging sensor for easy integration into customer device.</li>
</ul></li>
<li>NUCLEO-U575ZI-Q nucleo development board and expansion boards:
<ul>
<li>X-NUCLEO-BNRG2A1 Bluetooth Low Energy expansion board based on the BLUENRG-M2SP module for STM32 Nucleo</li>
<li>X-NUCLEO-53L3A2 ranging sensor with multi object detection and FoV (field of view) programming.</li>
</ul></li>
<li>NUCLEO-U575ZI-Q nucleo development board and expansion boards:
<ul>
<li>X-NUCLEO-BNRG2A1 Bluetooth Low Energy expansion board based on the BLUENRG-M2SP module for STM32 Nucleo</li>
<li>VL53L3CX-SATEL Breakout board with VL53L3CX multi-target detection ToF ranging sensor for easy integration into customer device.</li>
</ul></li>
</ul>
<h1 id="for-each-board-support-this-package-contains-the-following-projects">For each board support, this package contains the following projects:</h1>
<ul>
<li><p><strong>Applications</strong>:</p>
<ul>
<li><strong>FLIGHT1</strong>: STM32Cube function pack for ultra-low power IoT node with BLE connectivity and time-of-flight sensors data.</li>
</ul></li>
</ul>
<p>The figure below shows the overall architecture: <img src="_htmresc/FP-SNS-FLIGHT1_Software_Architecture.png" /></p>
<p>Here is the list of references to user documents:</p>
<ul>
<li><a href="http://www.st.com/resource/en/product_presentation/fp-sns-FLIGHT1_quick_start_guide.pdf">QSG</a> : STM32Cube function pack for IoT node with BLE connectivity and environmental, motion and time-of-flight sensors.</li>
<li><a href="http://www.st.com/stm32cube">STM32Cube</a> : STM32Cube</li>
<li><a href="http://www.st.com/stm32nucleo">STM32 Nucleo boards</a> : STM32 Nucleo boards</li>
</ul>
</div>
<div class="col-sm-12 col-lg-8">
<h1 id="update-history">Update History</h1>
<div class="collapse">
<input type="checkbox" id="collapse-section15" checked aria-hidden="true"> <label for="collapse-section15" aria-hidden="true">V5.1.0 / 24-January-2025</label>
<div>
<h2 id="main-changes">Main Changes</h2>
<h3 id="maintenance-release">Maintenance release</h3>
<ul>
<li>Added support for NUCLEO-U575ZI-Q</li>
<li>Added CUSTOM application for VL53L3CX-SATEL Breakout board</li>
<li>Removed STM32_MetaDataManager middleware</li>
<li>Updated STM32_BLE_Manager middleware</li>
<li>Updated Development Toolchains and Compilers version</li>
</ul>
<h2 id="contents">Contents</h2>
<p>The components flagged by “<span class="icon-st-update"></span>” have changed since the previous release. “<span class="icon-st-add"></span>” are new.</p>
<table>
<caption>Documentation<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">FP-SNS-FLIGHT1_NUCLEO-F401RE Doxygen documentation</td>
<td style="text-align: left;">5.1.0 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Documentation\FP-SNS-FLIGHT1_NUCLEO-F401RE.chm">CHM</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">FP-SNS-FLIGHT1_NUCLEO-L476RG Doxygen documentation</td>
<td style="text-align: left;">5.1.0 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Documentation\FP-SNS-FLIGHT1_NUCLEO-L476RG.chm">CHM</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">FP-SNS-FLIGHT1_NUCLEO-U575ZI-Q Doxygen documentation</td>
<td style="text-align: left;">5.1.0 <span class="icon-st-add"></span></td>
<td style="text-align: left;"><a href="Documentation\FP-SNS-FLIGHT1_NUCLEO-U575ZI-Q.chm">CHM</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Projects<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">NUCLEO-F401RE/Applications/53L3A2/FLIGHT1</td>
<td style="text-align: left;">5.1.0 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Projects/NUCLEO-F401RE/Applications/53L3A2/FLIGHT1/readme.html">Read Me</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">NUCLEO-F401RE/Applications/CUSTOM/FLIGHT1</td>
<td style="text-align: left;">5.1.0 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Projects/NUCLEO-F401RE/Applications/CUSTOM/FLIGHT1/readme.html">Read Me</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">NUCLEO-F401RE/Examples/BootLoader</td>
<td style="text-align: left;">3.1.0</td>
<td style="text-align: left;"><a href="Projects/NUCLEO-F401RE/Examples/BootLoader/readme.html">Read Me</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">NUCLEO-L476RG/Applications/53L3A2/FLIGHT1</td>
<td style="text-align: left;">5.1.0 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Projects/NUCLEO-L476RG/Applications/53L3A2/FLIGHT1/readme.html">Read Me</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">NUCLEO-L476RG/Applications/CUSTOM/FLIGHT1</td>
<td style="text-align: left;">5.1.0 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Projects/NUCLEO-L476RG/Applications/CUSTOM/FLIGHT1/readme.html">Read Me</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">NUCLEO-L476RG/Examples/BootLoader</td>
<td style="text-align: left;">3.1.0</td>
<td style="text-align: left;"><a href="Projects/NUCLEO-L476RG/Examples/BootLoader/readme.html">Read Me</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">NUCLEO-U575ZI-Q/Applications/53L3A2/FLIGHT1</td>
<td style="text-align: left;">5.1.0 <span class="icon-st-add"></span></td>
<td style="text-align: left;"><a href="Projects/NUCLEO-U575ZI-Q/Applications/53L3A2/FLIGHT1/readme.html">Read Me</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">NUCLEO-U575ZI-Q/Applications/CUSTOM/FLIGHT1</td>
<td style="text-align: left;">5.1.0 <span class="icon-st-add"></span></td>
<td style="text-align: left;"><a href="Projects/NUCLEO-U575ZI-Q/Applications/CUSTOM/FLIGHT1/readme.html">Read Me</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middlewares<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">BlueNRG-2</td>
<td style="text-align: left;">3.3.0</td>
<td style="text-align: left;"><a href="Middlewares\ST\BlueNRG-2\Release_Notes.html">Release Note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32_BLE_Manager</td>
<td style="text-align: left;">2.0.0 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Middlewares\ST\STM32_BLE_Manager\Release_Notes.html">Release Note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">parson</td>
<td style="text-align: left;">1.5.2 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Middlewares\Third_Party\parson\Release_Notes.html">Release Note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Drivers<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32F4xx CMSIS</td>
<td style="text-align: left;">2.6.10 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Drivers\CMSIS\Device\ST\STM32F4xx\Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32L4xx CMSIS</td>
<td style="text-align: left;">1.7.3 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Drivers\CMSIS\Device\ST\STM32L4xx\Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32U5xx CMSIS</td>
<td style="text-align: left;">1.4.1 <span class="icon-st-add"></span></td>
<td style="text-align: left;"><a href="Drivers\CMSIS\Device\ST\STM32U5xx\Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32F4xx HAL</td>
<td style="text-align: left;">1.8.3 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Drivers\STM32F4xx_HAL_Driver\Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32L4xx HAL</td>
<td style="text-align: left;">1.13.4 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Drivers\STM32L4xx_HAL_Driver\Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32L4xx HAL</td>
<td style="text-align: left;">1.16.1 <span class="icon-st-add"></span></td>
<td style="text-align: left;"><a href="Drivers\STM32U5xx_HAL_Driver\Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32F4xx_NUCLEO</td>
<td style="text-align: left;">1.2.9 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Drivers\BSP\STM32F4xx-Nucleo\Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32L4xx_NUCLEO</td>
<td style="text-align: left;">2.1.8 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Drivers\BSP\STM32L4xx_Nucleo\Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32U5xx_NUCLEO</td>
<td style="text-align: left;">1.2.2 <span class="icon-st-add"></span></td>
<td style="text-align: left;"><a href="Drivers\BSP\STM32U5xx_Nucleo\Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP X-NUCLEO-53L3A2</td>
<td style="text-align: left;">2.0.5 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Drivers\BSP\53L3A2\Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Components<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">vl53l3cx</td>
<td style="text-align: left;">2.0.6 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Drivers\BSP\Components\vl53l3cx\Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations">Known Limitations</h2>
<ul>
<li>None</li>
</ul>
<h2 id="warning">Warning</h2>
<ul>
<li>Whether you are generating your source code through STM32CubeMX tool, consider to deeply read the getting started guide within the folder documentation</li>
</ul>
<h2 id="important-hardware-additional-information">Important Hardware Additional Information</h2>
<p>BlueNRG-2 library does not work with the stock firmware that is loaded in the BLE module of X-NUCLEO-BNRG2A1 expansion board. For this reason:</p>
<ul>
<li>first of all, it is needed to solder on X-NUCLEO-BNRG2A1, if it is not soldered, a 0 Ohm resistor at R117</li>
<li>then you can use a standard ST-Link V2-1 with 5 jumper wires female-female together with STSW-BNRGFLASHER software tool (currently available only for Windows PC) in order to update the firmware of the BLE module of X-NUCLEO-BNRG2A1.</li>
</ul>
<p>Read user manual for more details.</p>
<h2 id="development-toolchains-and-compilers">Development Toolchains and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V9.20.1 + STLink/V2</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.38.0 + ST-LINK/V2</li>
<li>Integrated Development Environment for STM32 (STM32CubeIDE) V1.17.0 + ST-LINK</li>
</ul>
<h2 id="supported-devices-and-boards">Supported Devices and Boards</h2>
<ul>
<li>NUCLEO-F446RE STM32 Nucleo-64 development board with STM32F401RE MCU, supports Arduino and ST morpho connectivity [<a href="https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-f401re.html">NUCLEO-F401RE</a>]</li>
<li>NUCLEO-L476RG STM32 Nucleo-64 development board with STM32L476RG MCU, supports Arduino and ST morpho connectivity [<a href="https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-l476rg.html">NUCLEO-L476RG</a>]</li>
<li>NUCLEO-U575ZI-Q STM32 Nucleo-144 development board with STM32U575ZIT6Q MCU, SMPS, supports Arduino, ST Zio and morpho connectivity [<a href="https://www.st.com/en/evaluation-tools/nucleo-u575zi-q.html">NUCLEO-U575ZI-Q</a>]</li>
<li>X-NUCLEO-BNRG2A1 Bluetooth Low Energy expansion board based on the BLUENRG-M2SP module for STM32 Nucleo [<a href="https://www.st.com/en/ecosystems/x-nucleo-bnrg2a1.html">X-NUCLEO-BNRG2A1</a>]</li>
<li>X-NUCLEO-53L3A2 Motion MEMS and environmental sensor expansion board for STM32 Nucleo [<a href="https://www.st.com/en/evaluation-tools/x-nucleo-53l3a2.html">X-NUCLEO-53L3A2</a>]</li>
<li>VL53L3CX-SATEL Breakout board with VL53L3CX multi-target detection ToF ranging sensor for easy integration into customer device [<a href="https://www.st.com/en/evaluation-tools/vl53l3cx-satel.html">VL53L3CX-SATEL</a>]</li>
</ul>
<h2 id="backward-compatibility">Backward Compatibility</h2>
<p>None</p>
<h2 id="dependencies">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li><a href="https://play.google.com/store/apps/details?id=com.st.bluems"><strong>ST BLE Sensor Android application</strong></a> V5.2.0 (or higher)</li>
<li><a href="https://apps.apple.com/it/app/st-ble-sensor/id993670214"><strong>ST BLE Sensor iOS application</strong></a> V5.2.0 (or higher)</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section14" aria-hidden="true"> <label for="collapse-section14" aria-hidden="true">V5.0.2 / 20-June-2023</label>
<div>
<h2 id="main-changes-1">Main Changes</h2>
<h3 id="maintenance-release-1">Maintenance release</h3>
<ul>
<li>Added description of additional components on supported boards in all readme</li>
</ul>
<h2 id="contents-1">Contents</h2>
<p>The components flagged by “<span class="icon-st-update"></span>” have changed since the previous release. “<span class="icon-st-add"></span>” are new.</p>
<table>
<caption>Documentation<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">FP-SNS-FLIGHT1_STM32F401RE-Nucleo Doxygen documentation</td>
<td style="text-align: left;">5.0.2</td>
<td style="text-align: left;"><a href="Documentation\FP-SNS-FLIGHT1_STM32F401RE-Nucleo.chm">CHM</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">FP-SNS-FLIGHT1_STM32L476RG-Nucleo Doxygen documentation</td>
<td style="text-align: left;">5.0.2</td>
<td style="text-align: left;"><a href="Documentation\FP-SNS-FLIGHT1_STM32L476RG-Nucleo.chm">CHM</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Projects<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">NUCLEO-F401RE/Applications/53L3A2/FLIGHT1</td>
<td style="text-align: left;">5.0.2 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Projects/NUCLEO-F401RE/Applications/53L3A2/FLIGHT1/readme.html">Read Me</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">NUCLEO-F401RE/Examples/BootLoader</td>
<td style="text-align: left;">3.1.0</td>
<td style="text-align: left;"><a href="Projects/NUCLEO-F401RE/Examples/BootLoader/readme.html">Read Me</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">NUCLEO-L476RG/Applications/53L3A2/FLIGHT1</td>
<td style="text-align: left;">5.0.2 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Projects/NUCLEO-L476RG/Applications/53L3A2/FLIGHT1/readme.html">Read Me</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">NUCLEO-L476RG/Examples/BootLoader</td>
<td style="text-align: left;">3.1.0</td>
<td style="text-align: left;"><a href="Projects/NUCLEO-L476RG/Examples/BootLoader/readme.html">Read Me</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middlewares<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: center;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">BlueNRG-2</td>
<td style="text-align: center;">3.3.0</td>
<td style="text-align: left;"><a href="Middlewares\ST\BlueNRG-2\Release_Notes.html">Release Note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32_BLE_Manager</td>
<td style="text-align: center;">1.8.0</td>
<td style="text-align: left;"><a href="Middlewares\ST\STM32_BLE_Manager\Release_Notes.html">Release Note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">MetaDataManager Lib</td>
<td style="text-align: center;">1.7.0</td>
<td style="text-align: left;"><a href="Middlewares\ST\STM32_MetaDataManager\Release_Notes.html">Release Note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">parson</td>
<td style="text-align: center;">1.3.0</td>
<td style="text-align: left;"><a href="Middlewares\Third_Party\parson\Release_Notes.html">Release Note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Drivers<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32F4xx CMSIS</td>
<td style="text-align: left;">2.6.8</td>
<td style="text-align: left;"><a href="Drivers\CMSIS\Device\ST\STM32F4xx\Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32L4xx CMSIS</td>
<td style="text-align: left;">1.7.2</td>
<td style="text-align: left;"><a href="Drivers\CMSIS\Device\ST\STM32L4xx\Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32F4xx HAL</td>
<td style="text-align: left;">1.8.0</td>
<td style="text-align: left;"><a href="Drivers\STM32F4xx_HAL_Driver\Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32L4xx HAL</td>
<td style="text-align: left;">1.13.3 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Drivers\STM32L4xx_HAL_Driver\Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32F4xx_NUCLEO</td>
<td style="text-align: left;">1.2.8</td>
<td style="text-align: left;"><a href="Drivers\BSP\STM32F4xx-Nucleo\Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32L4xx_NUCLEO</td>
<td style="text-align: left;">2.1.7</td>
<td style="text-align: left;"><a href="Drivers\BSP\STM32L4xx_Nucleo\Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP X-NUCLEO-53L3A2</td>
<td style="text-align: left;">2.0.2</td>
<td style="text-align: left;"><a href="Drivers\BSP\53L3A2\Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Components<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">vl53l3cx</td>
<td style="text-align: left;">2.0.3 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Drivers\BSP\Components\vl53l3cx\Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations-1">Known Limitations</h2>
<ul>
<li>None</li>
</ul>
<h2 id="warning-1">Warning</h2>
<ul>
<li>Whether you are generating your source code through STM32CubeMX tool, consider to deeply read the getting started guide within the folder documentation</li>
</ul>
<h2 id="important-hardware-additional-information-1">Important Hardware Additional Information</h2>
<p>BlueNRG-2 library does not work with the stock firmware that is loaded in the BLE module of X-NUCLEO-BNRG2A1 expansion board. For this reason:</p>
<ul>
<li>first of all, it is needed to solder on X-NUCLEO-BNRG2A1, if it is not soldered, a 0 Ohm resistor at R117</li>
<li>then you can use a standard ST-Link V2-1 with 5 jumper wires female-female together with STSW-BNRGFLASHER software tool (currently available only for Windows PC) in order to update the firmware of the BLE module of X-NUCLEO-BNRG2A1.</li>
</ul>
<p>Read user manual for more details.</p>
<h2 id="development-toolchains-and-compilers-1">Development Toolchains and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V9.20.1 + STLink/V2</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.37.0 + ST-LINK/V2</li>
<li>Integrated Development Environment for STM32 (STM32CubeIDE) V1.12.0 + ST-LINK</li>
</ul>
<h2 id="supported-devices-and-boards-1">Supported Devices and Boards</h2>
<ul>
<li>NUCLEO-F446RE STM32 Nucleo-64 development board with STM32F401RE MCU, supports Arduino and ST morpho connectivity [<a href="https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-f401re.html">NUCLEO-F401RE</a>]</li>
<li>NUCLEO-L476RG STM32 Nucleo-64 development board with STM32L476RG MCU, supports Arduino and ST morpho connectivity [<a href="https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-l476rg.html">NUCLEO-L476RG</a>]</li>
</ul>
<h2 id="backward-compatibility-1">Backward Compatibility</h2>
<p>None</p>
<h2 id="dependencies-1">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li><a href="https://play.google.com/store/apps/details?id=com.st.bluems"><strong>ST BLE Sensor Android application</strong></a> V4.20.0 (or higher)</li>
<li><a href="https://apps.apple.com/it/app/st-ble-sensor/id993670214"><strong>ST BLE Sensor iOS application</strong></a> V4.20.0 (or higher)</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section13" aria-hidden="true"> <label for="collapse-section13" aria-hidden="true">V5.0.1 / 10-May-2023</label>
<div>
<h2 id="main-changes-2">Main Changes</h2>
<h3 id="maintenance-release-2">Maintenance release</h3>
<ul>
<li>Patched to resolve an issue with dependencies on Example Selector</li>
</ul>
<h2 id="contents-2">Contents</h2>
<p>The components flagged by “<span class="icon-st-update"></span>” have changed since the previous release. “<span class="icon-st-add"></span>” are new.</p>
<table>
<caption>Documentation<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">FP-SNS-FLIGHT1_STM32F401RE-Nucleo Doxygen documentation</td>
<td style="text-align: left;">5.0.1</td>
<td style="text-align: left;"><a href="Documentation\FP-SNS-FLIGHT1_STM32F401RE-Nucleo.chm">CHM</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">FP-SNS-FLIGHT1_STM32L476RG-Nucleo Doxygen documentation</td>
<td style="text-align: left;">5.0.1</td>
<td style="text-align: left;"><a href="Documentation\FP-SNS-FLIGHT1_STM32L476RG-Nucleo.chm">CHM</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Projects<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">NUCLEO-F401RE/Applications/53L3A2/FLIGHT1</td>
<td style="text-align: left;">5.0.1 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Projects/NUCLEO-F401RE/Applications/53L3A2/FLIGHT1/readme.html">Read Me</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">NUCLEO-F401RE/Examples/BootLoader</td>
<td style="text-align: left;">3.1.0</td>
<td style="text-align: left;"><a href="Projects/NUCLEO-F401RE/Examples/BootLoader/readme.html">Read Me</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">NUCLEO-L476RG/Applications/53L3A2/FLIGHT1</td>
<td style="text-align: left;">5.0.1 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Projects/NUCLEO-L476RG/Applications/53L3A2/FLIGHT1/readme.html">Read Me</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">NUCLEO-L476RG/Examples/BootLoader</td>
<td style="text-align: left;">3.1.0</td>
<td style="text-align: left;"><a href="Projects/NUCLEO-L476RG/Examples/BootLoader/readme.html">Read Me</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middlewares<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: center;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">BlueNRG-2</td>
<td style="text-align: center;">3.3.0</td>
<td style="text-align: left;"><a href="Middlewares\ST\BlueNRG-2\Release_Notes.html">Release Note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32_BLE_Manager</td>
<td style="text-align: center;">1.8.0</td>
<td style="text-align: left;"><a href="Middlewares\ST\STM32_BLE_Manager\Release_Notes.html">Release Note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">MetaDataManager Lib</td>
<td style="text-align: center;">1.7.0</td>
<td style="text-align: left;"><a href="Middlewares\ST\STM32_MetaDataManager\Release_Notes.html">Release Note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">parson</td>
<td style="text-align: center;">1.3.0</td>
<td style="text-align: left;"><a href="Middlewares\Third_Party\parson\Release_Notes.html">Release Note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Drivers<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32F4xx CMSIS</td>
<td style="text-align: left;">2.6.8</td>
<td style="text-align: left;"><a href="Drivers\CMSIS\Device\ST\STM32F4xx\Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32L4xx CMSIS</td>
<td style="text-align: left;">1.7.2</td>
<td style="text-align: left;"><a href="Drivers\CMSIS\Device\ST\STM32L4xx\Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32F4xx HAL</td>
<td style="text-align: left;">1.8.0</td>
<td style="text-align: left;"><a href="Drivers\STM32F4xx_HAL_Driver\Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32L4xx HAL</td>
<td style="text-align: left;">1.13.2</td>
<td style="text-align: left;"><a href="Drivers\STM32L4xx_HAL_Driver\Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32F4xx_NUCLEO</td>
<td style="text-align: left;">1.2.8</td>
<td style="text-align: left;"><a href="Drivers\BSP\STM32F4xx-Nucleo\Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32L4xx_NUCLEO</td>
<td style="text-align: left;">2.1.7</td>
<td style="text-align: left;"><a href="Drivers\BSP\STM32L4xx_Nucleo\Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP X-NUCLEO-53L3A2</td>
<td style="text-align: left;">2.0.2</td>
<td style="text-align: left;"><a href="Drivers\BSP\53L3A2\Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Components<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: center;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">vl53l3cx</td>
<td style="text-align: left;">2.0.2</td>
<td style="text-align: center;"><a href="Drivers\BSP\Components\vl53l3cx\Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations-2">Known Limitations</h2>
<ul>
<li>None</li>
</ul>
<h2 id="important-hardware-additional-information-2">Important Hardware Additional Information</h2>
<p>BlueNRG-2 library does not work with the stock firmware that is loaded in the BLE module of X-NUCLEO-BNRG2A1 expansion board. For this reason:</p>
<ul>
<li>first of all, it is needed to solder on X-NUCLEO-BNRG2A1, if it is not soldered, a 0 Ohm resistor at R117</li>
<li>then you can use a standard ST-Link V2-1 with 5 jumper wires female-female together with STSW-BNRGFLASHER software tool (currently available only for Windows PC) in order to update the firmware of the BLE module of X-NUCLEO-BNRG2A1.</li>
</ul>
<p>Read user manual for more details.</p>
<h2 id="development-toolchains-and-compilers-2">Development Toolchains and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V9.20.1 + STLink/V2</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.37.0 + ST-LINK/V2</li>
<li>Integrated Development Environment for STM32 (STM32CubeIDE) V1.11.0 + ST-LINK</li>
</ul>
<h2 id="supported-devices-and-boards-2">Supported Devices and Boards</h2>
<ul>
<li>NUCLEO-F446RE STM32 Nucleo-64 development board with STM32F401RE MCU, supports Arduino and ST morpho connectivity [<a href="https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-f401re.html">NUCLEO-F401RE</a>]</li>
<li>NUCLEO-L476RG STM32 Nucleo-64 development board with STM32L476RG MCU, supports Arduino and ST morpho connectivity [<a href="https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-l476rg.html">NUCLEO-L476RG</a>]</li>
</ul>
<h2 id="backward-compatibility-2">Backward Compatibility</h2>
<p>None</p>
<h2 id="dependencies-2">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li><a href="https://play.google.com/store/apps/details?id=com.st.bluems"><strong>ST BLE Sensor Android application</strong></a> V4.18.0 (or higher)</li>
<li><a href="https://apps.apple.com/it/app/st-ble-sensor/id993670214"><strong>ST BLE Sensor iOS application</strong></a> V4.18.0 (or higher)</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section12" aria-hidden="true"> <label for="collapse-section12" aria-hidden="true">V5.0.0 / 6-March-2023</label>
<div>
<h2 id="main-changes-3">Main Changes</h2>
<h3 id="maintenance-release-3">Maintenance release</h3>
<ul>
<li>Replaced Bluetooth board X-NUCLEO-IDB05A2 with X-NUCLEO-BNRG2A1</li>
<li>Code generation from STM32CubeMX application by .ioc file for each platform and for each applications and examples</li>
<li>Added BootLoader example for STM32F401RE-Nucleo and STM32L476RG-Nucleo board</li>
<li>Removed support for X-NUCLEO-NFC04A1</li>
<li>Updated Development Toolchains and Compilers version</li>
</ul>
<h2 id="contents-3">Contents</h2>
<p>The components flagged by “<span class="icon-st-update"></span>” have changed since the previous release. “<span class="icon-st-add"></span>” are new.</p>
<table>
<caption>Documentation<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">FP-SNS-FLIGHT1_STM32F401RE-Nucleo Doxygen documentation</td>
<td style="text-align: left;">5.0.0</td>
<td style="text-align: left;"><a href="Documentation\FP-SNS-FLIGHT1_STM32F401RE-Nucleo.chm">CHM</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">FP-SNS-FLIGHT1_STM32L476RG-Nucleo Doxygen documentation</td>
<td style="text-align: left;">5.0.0</td>
<td style="text-align: left;"><a href="Documentation\FP-SNS-FLIGHT1_STM32L476RG-Nucleo.chm">CHM</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Projects<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">NUCLEO-F401RE/Applications/53L3A2/FLIGHT1</td>
<td style="text-align: left;">5.0.0</td>
<td style="text-align: left;"><a href="Projects/NUCLEO-F401RE/Applications/53L3A2/FLIGHT1/readme.html">Read Me</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">NUCLEO-F401RE/Examples/BootLoader</td>
<td style="text-align: left;">3.1.0</td>
<td style="text-align: left;"><a href="Projects/NUCLEO-F401RE/Examples/BootLoader/readme.html">Read Me</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">NUCLEO-L476RG/Applications/53L3A2/FLIGHT1</td>
<td style="text-align: left;">5.0.0</td>
<td style="text-align: left;"><a href="Projects/NUCLEO-L476RG/Applications/53L3A2/FLIGHT1/readme.html">Read Me</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">NUCLEO-L476RG/Examples/BootLoader</td>
<td style="text-align: left;">3.1.0</td>
<td style="text-align: left;"><a href="Projects/NUCLEO-L476RG/Examples/BootLoader/readme.html">Read Me</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middlewares<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: center;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">BlueNRG-2</td>
<td style="text-align: center;">3.3.0 <span class="icon-st-add"></span></td>
<td style="text-align: left;"><a href="Middlewares\ST\BlueNRG-2\Release_Notes.html">Release Note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32_BLE_Manager</td>
<td style="text-align: center;">1.8.0 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Middlewares\ST\STM32_BLE_Manager\Release_Notes.html">Release Note</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">MetaDataManager Lib</td>
<td style="text-align: center;">1.7.0 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Middlewares\ST\STM32_MetaDataManager\Release_Notes.html">Release Note</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">parson</td>
<td style="text-align: center;">1.3.0 <span class="icon-st-update"></span></td>
<td style="text-align: left;"><a href="Middlewares\Third_Party\parson\Release_Notes.html">Release Note</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Drivers<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32F4xx CMSIS</td>
<td style="text-align: left;">2.6.8</td>
<td style="text-align: left;"><a href="Drivers\CMSIS\Device\ST\STM32F4xx\Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32L4xx CMSIS</td>
<td style="text-align: left;">1.7.2</td>
<td style="text-align: left;"><a href="Drivers\CMSIS\Device\ST\STM32L4xx\Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32F4xx HAL</td>
<td style="text-align: left;">1.8.0</td>
<td style="text-align: left;"><a href="Drivers\STM32F4xx_HAL_Driver\Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32L4xx HAL</td>
<td style="text-align: left;">1.13.2</td>
<td style="text-align: left;"><a href="Drivers\STM32L4xx_HAL_Driver\Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32F4xx_NUCLEO</td>
<td style="text-align: left;">1.2.8</td>
<td style="text-align: left;"><a href="Drivers\BSP\STM32F4xx-Nucleo\Release_Notes.html">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP STM32L4xx_NUCLEO</td>
<td style="text-align: left;">2.1.7</td>
<td style="text-align: left;"><a href="Drivers\BSP\STM32L4xx_Nucleo\Release_Notes.html">release notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP X-NUCLEO-53L3A2</td>
<td style="text-align: left;">2.0.2</td>
<td style="text-align: left;"><a href="Drivers\BSP\53L3A2\Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Components<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: center;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">vl53l3cx</td>
<td style="text-align: left;">2.0.2</td>
<td style="text-align: center;"><a href="Drivers\BSP\Components\vl53l3cx\Release_Notes.html">release notes</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations-3">Known Limitations</h2>
<ul>
<li>None</li>
</ul>
<h2 id="important-hardware-additional-information-3">Important Hardware Additional Information</h2>
<p>BlueNRG-2 library does not work with the stock firmware that is loaded in the BLE module of X-NUCLEO-BNRG2A1 expansion board. For this reason:</p>
<ul>
<li>first of all, it is needed to solder on X-NUCLEO-BNRG2A1, if it is not soldered, a 0 Ohm resistor at R117</li>
<li>then you can use a standard ST-Link V2-1 with 5 jumper wires female-female together with STSW-BNRGFLASHER software tool (currently available only for Windows PC) in order to update the firmware of the BLE module of X-NUCLEO-BNRG2A1.</li>
</ul>
<p>Read user manual for more details.</p>
<h2 id="development-toolchains-and-compilers-3">Development Toolchains and Compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V9.20.1 + STLink/V2</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.37.0 + ST-LINK/V2</li>
<li>Integrated Development Environment for STM32 (STM32CubeIDE) V1.11.0 + ST-LINK</li>
</ul>
<h2 id="supported-devices-and-boards-3">Supported Devices and Boards</h2>
<ul>
<li>NUCLEO-F446RE STM32 Nucleo-64 development board with STM32F401RE MCU, supports Arduino and ST morpho connectivity [<a href="https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-f401re.html">NUCLEO-F401RE</a>]</li>
<li>NUCLEO-L476RG STM32 Nucleo-64 development board with STM32L476RG MCU, supports Arduino and ST morpho connectivity [<a href="https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-l476rg.html">NUCLEO-L476RG</a>]</li>
</ul>
<h2 id="backward-compatibility-3">Backward Compatibility</h2>
<p>None</p>
<h2 id="dependencies-3">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li><a href="https://play.google.com/store/apps/details?id=com.st.bluems"><strong>ST BLE Sensor Android application</strong></a> V4.18.0 (or higher)</li>
<li><a href="https://apps.apple.com/it/app/st-ble-sensor/id993670214"><strong>ST BLE Sensor iOS application</strong></a> V4.18.0 (or higher)</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section11" aria-hidden="true"> <label for="collapse-section11" aria-hidden="true">V4.2.0 / 28-February-2022</label>
<div>
<h2 id="main-changes-4">Main Changes</h2>
<h3 id="maintenance-release-4">Maintenance release</h3>
<ul>
<li>Neutral license added</li>
<li>Updated STM32CubeL4 Firmware Package</li>
<li>Updated STM32CubeF4 Firmware Package</li>
<li>Updated X-CUBE-BLE1 Firmware Package</li>
<li>Updated X-CUBE-NFC4 Firmware Package</li>
<li>Updated X-CUBE-TOF1 Firmware Package</li>
<li>Updated Meta Data Manager middleware</li>
<li>Updated STM32_BLE_Manager middleware</li>
<li>Updated Development Toolchains and Compilers version</li>
</ul>
<h2 id="contents-4">Contents</h2>
<p>The components flagged by “<span class="icon-st-update"></span>” have changed since the previous release. “<span class="icon-st-add"></span>” are new.</p>
<table>
<caption>Documentation<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">FP-SNS-FLIGHT1_STM32F401RE-Nucleo Doxygen documentation</td>
<td style="text-align: left;">4.2.0</td>
<td style="text-align: left;"><a href="Documentation\FP-SNS-FLIGHT1_STM32F401RE-Nucleo.chm">CHM</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">FP-SNS-FLIGHT1_STM32L476RG-Nucleo Doxygen documentation</td>
<td style="text-align: left;">4.2.0</td>
<td style="text-align: left;"><a href="Documentation\FP-SNS-FLIGHT1_STM32L476RG-Nucleo.chm">CHM</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Projects<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Document</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32F401RE-Nucleo/Applications/FLIGHT1</td>
<td style="text-align: left;">4.2.0</td>
<td style="text-align: left;"><a href="Projects/STM32F401RE-Nucleo/Applications/FLIGHT1/readme.txt">Read Me</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32L476RG-Nucleo/Applications/FLIGHT1</td>
<td style="text-align: left;">4.2.0</td>
<td style="text-align: left;"><a href="Projects/STM32L476RG-Nucleo/Applications/FLIGHT1/readme.txt">Read Me</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middlewares<br />
</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>