-
Notifications
You must be signed in to change notification settings - Fork 3
/
Release_Notes.html
1140 lines (1140 loc) · 39.7 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 X-CUBE-AZRTOS-WB Component or Package</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
ul.task-list li input[type="checkbox"] {
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
<link rel="stylesheet" href="_htmresc/mini-st_2020.css" />
<link rel="icon" type="image/x-icon" href="_htmresc/favicon.png" />
<!--[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">
<center>
<h1 id="release-notes-for-x-cube-azrtos-wb">Release Notes for
X-CUBE-AZRTOS-WB</h1>
<p>Copyright © 2022 STMicroelectronics<br />
</p>
<a href="https://www.st.com" class="logo"><img
src="_htmresc/st_logo_2020.png" alt="ST logo" /></a>
</center>
<h1 id="purpose">Purpose</h1>
<p>With Azure RTOS complementing the extensive STM32Cube ecosystem
providing free development tools, software bricks, and software
expansion packages, STM32 users can also leverage the rich services of
Azure RTOS, which meet the needs of tiny, smart, connected devices.</p>
<p><strong>X-CUBE-AZRTOS-WB</strong> (Azure RTOS Software Expansion for
STM32Cube) provides a full integration of <strong>Microsoft Azure
RTOS</strong> in the STM32Cube environment for the STM32WB series of
microcontrollers. Ready-to-run applicative examples are also provided
for the <em>P-NUCLEO-WB55.Nucleo</em> and <em>STM32WB5MM-DK</em>
evaluation boards, thus <strong>reducing the learning curve</strong> and
ensuring a <strong>smooth application development experience</strong>
with Azure RTOS and STM32WB MCUs.</p>
<p>The scope of this package covers the following Azure RTOS middleware:
RTOS (<strong><em>ThreadX</em></strong>), USB Device
(<strong><em>USBX</em></strong>), File System including NOR/NAND
memories support (<strong><em>FileX</em></strong> and
<strong><em>LevelX</em></strong>) and Networking
(<strong><em>NetXDuo</em></strong>).</p>
<p><img src="_htmresc/OverviewAzureRTOS_in_STM32Cube.png" /></p>
<p>Azure RTOS is a professional grade, highly reliable and market proven
Middleware suite:</p>
<ul>
<li><strong>Integrated</strong> and full featured <strong>RTOS</strong>.
Learn more <a href="https://aka.ms/threadx"><em>ThreadX</em></a>.</li>
<li><strong>Industrial grade</strong> networking stack: optimized for
performance coming with <strong>many IoT protocols.</strong> Learn more
<a href="https://aka.ms/netxduo"><em>Netx Duo</em></a></li>
<li>Advanced FS/FTL: <strong>fully featured</strong> to support
<strong>NAND/NOR Flash</strong> memories. Learn more <a
href="https://aka.ms/filex"><em>FileX</em></a> <em>and</em> <a
href="https://learn.microsoft.com/en-us/azure/rtos/levelx/"><em>LevelX</em></a></li>
<li>USB <strong>Host</strong> and <strong>Device</strong> stacks coming
with <strong>multiple classes.</strong> Learn more <a
href="https://aka.ms/usbx"><em>USBX</em></a></li>
<li><strong>Safety pre-certifications (from Microsoft)</strong>: IEC
61508 SIL4, IEC 62304 Class C and ISO 26262 ASIL D</li>
<li><strong>Security pre-certifications (from Microsoft)</strong>: EAL4+
for TLS/DTLS, FIPS 140-2 for SW crypto lib</li>
<li>STM32 <strong>granted production license:</strong> <a
href="https://github.com/azure-rtos/threadx/blob/master/LICENSED-HARDWARE.txt"><em>here</em></a></li>
</ul>
<h1 id="repository-structure">Repository structure</h1>
<p>The STMicroelectronics X-CUBE-AZRTOS-WB repository consists of the
following repositories:</p>
<ul>
<li><strong>STM32CubeMX</strong>: contains STM32CubeMX configuration
files:
<ul>
<li>xml files: they describe how the software component configuration
parameters can be modified through the STM32CubeMX user interface</li>
<li>FTL files: they provide the initialization code to be generated by
the STM32CubeMX</li>
</ul></li>
<li><strong>Drivers</strong>: contains STM32WB CMSIS, HAL and BSP
drivers</li>
<li><strong>Middlewares</strong>: contains ThreadX, NetX Duo, FileX,
LevelX and USBX stacks including porting on STM32 hardware</li>
<li><strong>Projects</strong>: provides ready-to-run applicative
examples for Azure RTOS on the supported boards. Projects are structured
as follows:</li>
</ul>
<p><img src="_htmresc/AzureRTOS_Projects_Structure.png" /></p>
<h1 id="documentation">Documentation</h1>
<p>More comprehensive documentation is available on STM32 <a
href="https://wiki.st.com/stm32mcu/wiki/STM32CoreMW_overview">MCU
Wiki</a>.</p>
</div>
<section id="update-history" class="col-sm-12 col-lg-8">
<h1>Update history</h1>
<div class="collapse">
<input type="checkbox" id="collapse-section3" checked aria-hidden="true">
<label for="collapse-section3" aria-hidden="true"><strong>V2.0.0 /
16-June-2023</strong></label>
<div>
<h2 id="main-changes">Main changes</h2>
<ul>
<li>Maintenance release of <strong><em>X-CUBE-AZRTOS-WB</em></strong>
package</li>
<li>Azure RTOS update to V6.2.0.</li>
<li>Add Azure RTOS MW initialization support to ThreadX, FileX/LevelX
and USBX
<ul>
<li>The Azure RTOS MW integration in STM32CubeMX generates stacks
initialization before starting applicative code.</li>
</ul></li>
<li>Add Standalone mode support to FileX/LevelX and USBX</li>
<li>Add <strong><em>2 new ThreadX</em></strong> Applications:
<ul>
<li>Tx_Thread_MsgQueue</li>
<li>Tx_Thread_Sync</li>
</ul></li>
<li>General updates to fix known defects and implement enhancements:
<ul>
<li>STM32CubeMX configuration files (PDSC/IPmode/IPconfig):
<ul>
<li>Remove some unused NetXDuo config flags.</li>
<li>Add Azure RTOS MW initialization support to ThreadX, FileX/LevelX
and USBX</li>
<li>Add Standalone support to FileX/LevelX and USBX</li>
<li>Add new USBX classes: MTP, RNDIS, CCID, PRINTER, VIDEO and
CustomHID</li>
</ul></li>
<li>Fx_SRAM_File_Edit_Standalone application generated using
STM32CubeMX.</li>
<li>All Azure RTOS applications files regenerated using STM32CubeMX
V6.8.0 and new Azure RTOS pack 2.0.0.</li>
</ul></li>
</ul>
<h2 id="contents">Contents</h2>
<h3 id="applications">Applications</h3>
<p>Provides ready-to-run applicative examples for Azure RTOS on the
supported boards. For detailed list refer to <a
href="Projects/X-CUBE-AZRTOS-WB_ProjectsList.html">applications
list</a></p>
<h3 id="drivers">Drivers</h3>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: center;">Version</th>
<th style="text-align: center;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td style="text-align: center;">v5.6.0_cm4</td>
<td style="text-align: center;"><a
href="Drivers/CMSIS/README.md">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32WBxx CMSIS</td>
<td style="text-align: center;">v1.12.0</td>
<td style="text-align: center;"><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</td>
<td style="text-align: center;"><strong>v1.13.0</strong></td>
<td style="text-align: center;"><a
href="Drivers/STM32WBxx_HAL_Driver/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP P-NUCLEO-WB55.Nucleo</td>
<td style="text-align: center;"><strong>v1.0.6</strong></td>
<td style="text-align: center;"><a
href="Drivers/BSP/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP NUCLEO-WB15CC</td>
<td style="text-align: center;"><strong>v1.0.3</strong></td>
<td style="text-align: center;"><a
href="Drivers/BSP/NUCLEO-WB15CC/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP P-NUCLEO-WB55.USBDongle</td>
<td style="text-align: center;"><strong>v1.0.5</strong></td>
<td style="text-align: center;"><a
href="Drivers/BSP/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32WB5MM-DK</td>
<td style="text-align: center;"><strong>v1.0.4</strong></td>
<td style="text-align: center;"><a
href="Drivers/BSP/STM32WB5MM-DK/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Common</td>
<td style="text-align: center;">v7.2.1</td>
<td style="text-align: center;"><a
href="Drivers/BSP/Components/Common/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP ssd1315</td>
<td style="text-align: center;">v2.0.1</td>
<td style="text-align: center;"><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 style="text-align: center;">v1.0.2</td>
<td style="text-align: center;"><a
href="Drivers/BSP/Components/s25fl128s/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP stts22h</td>
<td style="text-align: center;">v1.3.0</td>
<td style="text-align: center;"><a
href="Drivers/BSP/Components/stts22h/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP ism330dhcx</td>
<td style="text-align: center;">v1.2.1</td>
<td style="text-align: center;"><a
href="Drivers/BSP/Components/ism330dhcx/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP stm32wb_at</td>
<td style="text-align: center;">v1.0.12</td>
<td style="text-align: center;"><a
href="Drivers/BSP/Components/stm32wb_at/Release_Notes.html">release
notes</a></td>
</tr>
</tbody>
</table>
<h3 id="middlewares">Middlewares</h3>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><strong>ThreadX</strong></td>
<td style="text-align: left;"><strong>6.2.0</strong></td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/threadx/releases/tag/v6.2.0_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>NetXDuo</strong></td>
<td style="text-align: left;"><strong>6.2.0</strong></td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/netxduo/releases/tag/v6.2.0_rel">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>USBX</strong></td>
<td style="text-align: left;"><strong>6.2.0</strong></td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/usbx/releases/tag/v6.2.0_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>FileX</strong></td>
<td style="text-align: left;"><strong>6.2.0</strong></td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/filex/releases/tag/v6.2.0_rel">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>LevelX</strong></td>
<td style="text-align: left;"><strong>6.2.0</strong></td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/levelx/releases/tag/v6.2.0_rel">release
notes</a></td>
</tr>
</tbody>
</table>
<h3 id="cmsis-rtos-wrapper-for-azure-rtos-threadx">CMSIS-RTOS wrapper
for Azure RTOS ThreadX</h3>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><strong>cmsis_rtos_threadx</strong></td>
<td style="text-align: left;"><strong>1.2.0</strong></td>
<td style="text-align: left;"><a
href="Middlewares/ST/cmsis_rtos_threadx/Release_Notes.html">release
notes</a></td>
</tr>
</tbody>
</table>
<table style="width:100%;">
<colgroup>
<col style="width: 42%" />
<col style="width: 16%" />
<col style="width: 41%" />
</colgroup>
<thead>
<tr class="header">
<th>CMSIS-RTOS API group</th>
<th>Supported</th>
<th>Short Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Kernel Information and Control</td>
<td>Y</td>
<td>It provides version/system information and starts/controls the RTOS
Kernel. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__KernelCtrl.html">More…</a></td>
</tr>
<tr class="even">
<td>Thread Management</td>
<td>Y</td>
<td>It defines, create, and control thread functions.. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__ThreadMgmt.html">More…</a></td>
</tr>
<tr class="odd">
<td>Thread Flags</td>
<td>N</td>
<td>It synchronizes threads using flags. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__ThreadFlagsMgmt.html">More…</a></td>
</tr>
<tr class="even">
<td>Event Flags</td>
<td>Y</td>
<td>It synchronizes threads using flags. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__EventFlags.html">More…</a></td>
</tr>
<tr class="odd">
<td>Generic Wait Functions</td>
<td>Y</td>
<td>It waits for a certain period of time.. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__Wait.html">More…</a></td>
</tr>
<tr class="even">
<td>Timer Management</td>
<td>Y</td>
<td>It creates and controls timer and timer callback functions. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__TimerMgmt.html">More…</a></td>
</tr>
<tr class="odd">
<td>Mutex Management</td>
<td>Y</td>
<td>It synchronizes resource access using Mutual Exclusion (Mutex). <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__MutexMgmt.html">More…</a></td>
</tr>
<tr class="even">
<td>Semaphores</td>
<td>Y</td>
<td>It access shared resources simultaneously from different threads. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__SemaphoreMgmt.html">More…</a></td>
</tr>
<tr class="odd">
<td>Memory Pool</td>
<td>Y</td>
<td>It manages thread-safe fixed-size blocks of dynamic memory. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__PoolMgmt.html">More…</a></td>
</tr>
<tr class="even">
<td>Message Queue</td>
<td>Y</td>
<td>It exchanges messages between threads in a FIFO-like operation. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__Message.html">More…</a></td>
</tr>
</tbody>
</table>
<p>The CMSIS-RTOS provides generic RTOS interfaces for Arm® Cortex®
processor-based devices. It provides a standardized API for software
components that require RTOS functionality.</p>
<p>For more information about CMSIS-RTOS API V2, please refer to the ARM
manual: <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS.html">CMSIS-RTOS
API</a></p>
<p>For more information about CMSIS-RTOS wrapper for Azure RTOS ThreadX,
please refer to <a
href="./Middlewares/ST/cmsis_rtos_threadx/README.md">readme</a></p>
<h2 id="known-limitations">Known limitations</h2>
<ul>
<li>USBX composite device descriptors
<ul>
<li>A maximum of 3 different class drivers can be selected (restriction
due to limited EP numbers)</li>
<li>A list of USB device Applications supporting auto generation of USB
Device framework descriptors provided for these USB class drivers :MSC,
HID mouse, CDC ACM, CDC ECM, DFU, MTP, RNDIS, CCID, PRINTER, VIDEO and
CustomHID. For the other device class drivers, user needs first to
disable the device framework builder (refer to : USBX wiki section 2.2
How to customize) and provide the full set of required device
descriptors.</li>
</ul></li>
<li>When using the Pack in STM32CubeMX
<ul>
<li>FileX/LevelX: multi instance is not supported, a low level interface
driver can be instantiated only once</li>
<li>USB multi instance is not supported, a class drivers can be
instantiated only once</li>
<li>The component “USBX/CoreSystem” must be selected alongside either
“USBX/UX Host CoreStack” or “USBX/UX Device CoreStack”</li>
<li>When developing large NetXDuo-based applications on boards with
reduced Flash and RAM sizes, such as the STM32WB15, memory allocation
errors can occur.</li>
<li>X-CUBE-AZRTOS-WB is no longer compatible with the MDK-ARM AC5
compiler: when generating a project for the MDK-ARM toolchain, the AC6
compiler is used by default</li>
</ul></li>
<li>ThreadX
<ul>
<li>The Tx_MPU application may show instabilities when the ThreadX
module (Tx_Module) project is compiled without optimization with
STM32CubeIDE debug mode.</li>
</ul></li>
</ul>
<h2 id="development-toolchains-and-compilers">Development toolchains and
compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM)toolchain 9.20.1 +
ST-LINKV3.</li>
<li><a
href="https://www.st.com/en/development-tools/stm32cubeide.html">STM32CubeIDE
V1.12.0</a> + ST-LINKV3</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.37 +
ST-LINKV3</li>
</ul>
<h2 id="supported-devices-and-boards-by-applications">Supported devices
and boards by Applications</h2>
<ul>
<li><a
href="https://www.st.com/en/evaluation-tools/p-nucleo-wb55.html">P-NUCLEO-WB55.Nucleo</a>
<em>(MB1355-C01)</em></li>
<li><a
href="https://www.st.com/en/evaluation-tools/stm32wb5mm-dk.html">STM32WB5MM-DK</a>
<em>(MB1292-B01)</em></li>
</ul>
<h2 id="dependencies">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li>STM32CubeMX V6.8.0</li>
<li>STM32PackCreator 3.5.0</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section2">
<label for="collapse-section2" aria-hidden="true"><strong>V1.1.0 /
25-November-2022</strong></label>
<div>
<h2 id="main-changes-1">Main changes</h2>
<ul>
<li>Maintenance release of <strong>X-CUBE-AZRTOS-WB</strong>
package</li>
<li>Azure RTOS update to V6.1.12</li>
<li>Add Azure RTOS STM32CubeMX configuration files (*ioc, PDSC,
IPModes/IPConfigs and ftl files)</li>
<li>All Azure RTOS applications files regenerated using STM32CubeMX
V6.7.0 and new Azure RTOS pack v1.1.0</li>
</ul>
<h2 id="contents-1">Contents</h2>
<h3 id="applications-1">Applications</h3>
<p>Provides ready-to-run applicative examples for Azure RTOS on the
supported boards. For detailed list refer to <a
href="Projects/X-CUBE-AZRTOS-WB_ProjectsList.html">applications
list</a></p>
<h3 id="drivers-1">Drivers</h3>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: center;">Version</th>
<th style="text-align: center;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td style="text-align: center;">v5.6.0_cm4</td>
<td style="text-align: center;"><a
href="Drivers/CMSIS/README.md">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32WBxx CMSIS</td>
<td style="text-align: center;"><strong>v1.12.0</strong></td>
<td style="text-align: center;"><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</td>
<td style="text-align: center;"><strong>v1.12.0</strong></td>
<td style="text-align: center;"><a
href="Drivers/STM32WBxx_HAL_Driver/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP P-NUCLEO-WB55.Nucleo</td>
<td style="text-align: center;"><strong>v1.0.5</strong></td>
<td style="text-align: center;"><a
href="Drivers/BSP/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP NUCLEO-WB15CC</td>
<td style="text-align: center;">v1.0.2</td>
<td style="text-align: center;"><a
href="Drivers/BSP/NUCLEO-WB15CC/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP P-NUCLEO-WB55.USBDongle</td>
<td style="text-align: center;">v1.0.4</td>
<td style="text-align: center;"><a
href="Drivers/BSP/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32WB5MM-DK</td>
<td style="text-align: center;"><strong>v1.0.3</strong></td>
<td style="text-align: center;"><a
href="Drivers/BSP/STM32WB5MM-DK/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Common</td>
<td style="text-align: center;"><strong>v7.2.1</strong></td>
<td style="text-align: center;"><a
href="Drivers/BSP/Components/Common/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP ssd1315</td>
<td style="text-align: center;"><strong>v2.0.1</strong></td>
<td style="text-align: center;"><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 style="text-align: center;">v1.0.2</td>
<td style="text-align: center;"><a
href="Drivers/BSP/Components/s25fl128s/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP stts22h</td>
<td style="text-align: center;"><strong>v1.3.0</strong></td>
<td style="text-align: center;"><a
href="Drivers/BSP/Components/stts22h/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP ism330dhcx</td>
<td style="text-align: center;"><strong>v1.2.1</strong></td>
<td style="text-align: center;"><a
href="Drivers/BSP/Components/ism330dhcx/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP stm32wb_at</td>
<td style="text-align: center;"><strong>v1.0.12</strong></td>
<td style="text-align: center;"><a
href="Drivers/BSP/Components/stm32wb_at/Release_Notes.html">release
notes</a></td>
</tr>
</tbody>
</table>
<h3 id="middlewares-1">Middlewares</h3>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><strong>ThreadX</strong></td>
<td style="text-align: left;"><strong>6.1.12</strong></td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/threadx/releases/tag/v6.1.12_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>NetXDuo</strong></td>
<td style="text-align: left;"><strong>6.1.12</strong></td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/netxduo/releases/tag/v6.1.12_rel">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>USBX</strong></td>
<td style="text-align: left;"><strong>6.1.12</strong></td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/usbx/releases/tag/v6.1.12_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>FileX</strong></td>
<td style="text-align: left;"><strong>6.1.12</strong></td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/filex/releases/tag/v6.1.12_rel">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>LevelX</strong></td>
<td style="text-align: left;"><strong>6.1.12</strong></td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/levelx/releases/tag/v6.1.12_rel">release
notes</a></td>
</tr>
</tbody>
</table>
<h3 id="cmsis-rtos-wrapper-for-azure-rtos-threadx-1">CMSIS-RTOS wrapper
for Azure RTOS ThreadX</h3>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><strong>cmsis_rtos_threadx</strong></td>
<td style="text-align: left;"><strong>1.1.0</strong></td>
<td style="text-align: left;"><a
href="Middlewares/ST/cmsis_rtos_threadx/Release_Notes.html">release
notes</a></td>
</tr>
</tbody>
</table>
<table style="width:100%;">
<colgroup>
<col style="width: 42%" />
<col style="width: 16%" />
<col style="width: 41%" />
</colgroup>
<thead>
<tr class="header">
<th>CMSIS-RTOS API group</th>
<th>Supported</th>
<th>Short Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Kernel Information and Control</td>
<td>Y</td>
<td>It provides version/system information and starts/controls the RTOS
Kernel. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__KernelCtrl.html">More…</a></td>
</tr>
<tr class="even">
<td>Thread Management</td>
<td>Y</td>
<td>It defines, create, and control thread functions.. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__ThreadMgmt.html">More…</a></td>
</tr>
<tr class="odd">
<td>Thread Flags</td>
<td>N</td>
<td>It synchronizes threads using flags. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__ThreadFlagsMgmt.html">More…</a></td>
</tr>
<tr class="even">
<td>Event Flags</td>
<td>Y</td>
<td>It synchronizes threads using flags. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__EventFlags.html">More…</a></td>
</tr>
<tr class="odd">
<td>Generic Wait Functions</td>
<td>Y</td>
<td>It waits for a certain period of time.. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__Wait.html">More…</a></td>
</tr>
<tr class="even">
<td>Timer Management</td>
<td>Y</td>
<td>It creates and controls timer and timer callback functions. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__TimerMgmt.html">More…</a></td>
</tr>
<tr class="odd">
<td>Mutex Management</td>
<td>Y</td>
<td>It synchronizes resource access using Mutual Exclusion (Mutex). <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__MutexMgmt.html">More…</a></td>
</tr>
<tr class="even">
<td>Semaphores</td>
<td>Y</td>
<td>It access shared resources simultaneously from different threads. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__SemaphoreMgmt.html">More…</a></td>
</tr>
<tr class="odd">
<td>Memory Pool</td>
<td>N</td>
<td>It manages thread-safe fixed-size blocks of dynamic memory. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__PoolMgmt.html">More…</a></td>
</tr>
<tr class="even">
<td>Message Queue</td>
<td>Y</td>
<td>It exchanges messages between threads in a FIFO-like operation. <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS__Message.html">More…</a></td>
</tr>
</tbody>
</table>
<p>The CMSIS-RTOS provides generic RTOS interfaces for Arm® Cortex®
processor-based devices. It provides a standardized API for software
components that require RTOS functionality.</p>
<p>For more information about CMSIS-RTOS API V2, please refer to the ARM
manual: <a
href="https://www.keil.com/pack/doc/cmsis/RTOS2/html/group__CMSIS__RTOS.html">CMSIS-RTOS
API</a></p>
<p>For more information about CMSIS-RTOS wrapper for Azure RTOS ThreadX,
please refer to <a
href="./Middlewares/ST/cmsis_rtos_threadx/README.md">readme</a></p>
<h2 id="known-limitations-1">Known limitations</h2>
<ul>
<li>STM32CubeMX configuration files (PDSC/IPmode/IPconfig)
<ul>
<li>Some component inter-dependencies are missing and they will be added
in future release</li>
<li>Some configuration parameters inter-dependencies are missing and
they will be added in future release</li>
<li>Some configuration parameters minimum/maximum values are to be
updated in the future release</li>
</ul></li>
<li>USBX composite device descriptors
<ul>
<li>A list of USB device Applications supporting auto generation of USB
Device framework descriptors provided for these USB class drivers :MSC,
HID mouse, CDC ACM, CDC ECM, DFU. For the other device class drivers,
user needs first to disable the device framework builder (refer to :
USBX wiki section 2.2 How to customize) and provide the full set of
required device descriptors.</li>
</ul></li>
<li>When using the Pack in STM32CubeMX
<ul>
<li>FileX/LevelX: multi instance is not supported, a low level interface
driver can be instanced only once</li>
<li>USB multi instance is not supported, a class driver can be instanced
only once</li>
<li>The component “USBX/CoreSystem” must be selected alongside “USBX/UX
Device CoreStack”</li>
<li>When enabling “LevelX QuadSPI memory interface” component, the
STM32CubeMX “Project Manager –> Advanced settings” respective to
<strong>MX_QUADSPI_Init()</strong> should be tuned as following :
<ul>
<li>“Do Not Generate function call” –> checked</li>
<li>“Visibility Static” –> unchecked</li>
</ul></li>
<li>The FileX and USBX standalone modes are not yet supported</li>
<li>X-CUBE-AZRTOS-WB is not compatible with the MDK-ARM AC5 compiler:
when generating a project for the MDK-ARM toolchain, the AC6 compiler is
used by default</li>
</ul></li>
</ul>
<h2 id="development-toolchains-and-compilers-1">Development toolchains
and compilers</h2>
<ul>
<li>IAR Embedded Workbench for ARM (EWARM)toolchain 8.50.9 +
ST-LINKV3.</li>
<li><a
href="https://www.st.com/en/development-tools/stm32cubeide.html">STM32CubeIDE
V1.11.0</a> + ST-LINKV3</li>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.37 +
ST-LINKV3</li>
</ul>
<h2 id="supported-devices-and-boards-by-applications-1">Supported
devices and boards by Applications</h2>
<ul>
<li><a
href="https://www.st.com/en/evaluation-tools/p-nucleo-wb55.html">P-NUCLEO-WB55.Nucleo</a>
<em>(MB1355-C01)</em></li>
<li><a
href="https://www.st.com/en/evaluation-tools/stm32wb5mm-dk.html">STM32WB5MM-DK</a>
<em>(MB1292-B01)</em></li>
</ul>
<h2 id="dependencies-1">Dependencies</h2>
<p>This software release is compatible with:</p>
<ul>
<li>STM32CubeMX V6.7.0</li>
<li>STM32PackCreator 3.4.0</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section1" aria-hidden="true">
<label for="collapse-section1" aria-hidden="true"><strong>V1.0.0 /
31-December-2021</strong></label>
<div>
<h2 id="main-changes-2">Main changes</h2>
<ul>
<li>First official release of STM32Cube Azure RTOS software expansion
for STM32WB MCU series.</li>
</ul>
<h2 id="contents-2">Contents</h2>
<h3 id="applications-2">Applications</h3>
<p>Provides ready-to-run applicative examples for Azure RTOS on the
supported boards. For detailed list refer to <a
href="Projects/X-CUBE-AZRTOS-WB_ProjectsList.html">applications
list</a></p>
<h3 id="drivers-2">Drivers</h3>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: center;">Version</th>
<th style="text-align: center;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Cortex-M CMSIS</td>
<td style="text-align: center;">v5.6.0_cm4</td>
<td style="text-align: center;"><a
href="Drivers/CMSIS/README.md">release notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32WBxx CMSIS</td>
<td style="text-align: center;">v1.10.0</td>
<td style="text-align: center;"><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</td>
<td style="text-align: center;">v1.10.0</td>
<td style="text-align: center;"><a
href="Drivers/STM32WBxx_HAL_Driver/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP P-NUCLEO-WB55.Nucleo</td>
<td style="text-align: center;">v1.0.4</td>
<td style="text-align: center;"><a
href="Drivers/BSP/P-NUCLEO-WB55.Nucleo/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP NUCLEO-WB15CC</td>
<td style="text-align: center;">v1.0.2</td>
<td style="text-align: center;"><a
href="Drivers/BSP/NUCLEO-WB15CC/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP P-NUCLEO-WB55.USBDongle</td>
<td style="text-align: center;">v1.0.4</td>
<td style="text-align: center;"><a
href="Drivers/BSP/P-NUCLEO-WB55.USBDongle/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP STM32WB5MM-DK</td>
<td style="text-align: center;">v1.0.2</td>
<td style="text-align: center;"><a
href="Drivers/BSP/STM32WB5MM-DK/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP Common</td>
<td style="text-align: center;">v7.0.0</td>
<td style="text-align: center;"><a
href="Drivers/BSP/Components/Common/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP ssd1315</td>
<td style="text-align: center;">v2.0.0</td>
<td style="text-align: center;"><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 style="text-align: center;">v1.0.2</td>
<td style="text-align: center;"><a
href="Drivers/BSP/Components/s25fl128s/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP stts22h</td>
<td style="text-align: center;">v1.1.1</td>
<td style="text-align: center;"><a
href="Drivers/BSP/Components/stts22h/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">BSP ism330dhcx</td>
<td style="text-align: center;">v1.0.2</td>
<td style="text-align: center;"><a
href="Drivers/BSP/Components/ism330dhcx/Release_Notes.html">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">BSP stm32wb_at</td>
<td style="text-align: center;">v1.0.9</td>
<td style="text-align: center;"><a
href="Drivers/BSP/Components/stm32wb_at/Release_Notes.html">release
notes</a></td>
</tr>
</tbody>
</table>
<h3 id="middlewares-2">Middlewares</h3>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><strong>ThreadX</strong></td>
<td style="text-align: left;">6.1.9</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/threadx/releases/tag/v6.1.9_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>NetXDuo</strong></td>
<td style="text-align: left;">6.1.9</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/netxduo/releases/tag/v6.1.9_rel">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>USBX</strong></td>
<td style="text-align: left;">6.1.9</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/usbx/releases/tag/v6.1.9_rel">release
notes</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><strong>FileX</strong></td>
<td style="text-align: left;">6.1.8</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/filex/releases/tag/r6.1.8_rel">release
notes</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><strong>LevelX</strong></td>
<td style="text-align: left;">6.1.9</td>
<td style="text-align: left;"><a
href="https://github.com/azure-rtos/levelx/releases/tag/v6.1.9_rel">release
notes</a></td>
</tr>
</tbody>
</table>
<h3 id="cmsis-rtos-wrapper-for-azure-rtos-threadx-2">CMSIS-RTOS wrapper
for Azure RTOS ThreadX</h3>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th style="text-align: left;">Release note</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><strong>cmsis_rtos_threadx</strong></td>
<td style="text-align: left;">1.0.4</td>