-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRelease_Notes.html
2287 lines (2287 loc) · 89.4 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 LoRa software expansion for STM32Cube</title>
<style>
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-lora-software-expansion-for-stm32cube"><small>Release Notes for</small> LoRa software expansion for STM32Cube</h1>
<p>Copyright © 2019 STMicroelectronics<br />
</p>
<a href="https://www.st.com" class="logo"><img src="_htmresc/st_logo.png" alt="ST logo" /></a>
</center>
</div>
</div>
<h1 id="license">License</h1>
<p>This software package is licensed by ST under ST license SLA0048, the “License”; You may not use this package except in compliance with the License. You may obtain a copy of the License at:</p>
<p><a href="http://www.st.com/SLA0048">http://www.st.com/SLA0048</a></p>
<h1 id="purpose">Purpose</h1>
<p><strong>LoRa® is a long range wireless area network allowing low-power sensors to report over ranges of up to a dozen kilometers. </mark></strong></p>
<p><img src="_htmresc/en_i-cube-lrwan.jpg" /></p>
<p>The I-CUBE-LRWAN Expansion Package consists of a set of libraries and application examples for STM32L0, STM32L1 and STM32L4 Series microcontrollers acting as end-devices. This package supports the SX1276MB1MAS, SX1276MB1LAS, SX1272MB2DAS, and the new radio generation sx126x mounted on SX1262DVK1DAS, SX1262DVK1CAS and SX1262DVK1BAS LoRa® radio expansion boards, provided by SEMTECH. This package includes an application running on NUCLEO-L053R8, NUCLEO-L152RE, NUCLEO-L476RG and B-L072Z-LRWAN1 Discovery kits embedding the CMWX1ZZABZ-091 LoRa® module from Murata. It also supports a USI® LoRaWAN® technology module through the I-NUCLEO-LRWAN1 expansion board and the RiSiNGHF® modem RHF0M003 mounted on LRWAN-NS1 expansion board available in P-NUCLEO-LRWAN3 (coming soon). The application reads sensor data from the X-NUCLEO-IKS01A2 expansion board and sends the sensor data to the LoRa® network in class A. For further details about the components of the LoRa® middleware library, refer to the STM32 LoRa® software expansion for STM32Cube User manual (UM2073).</p>
<center>
<strong>Key Features </mark></strong>
</center>
<ul>
<li><p>Compliant with the LoRa Alliance® specification protocol, named LoRaWAN® version V1.0.3 March 2018</p></li>
<li><p>Bidirectional end-devices with class A, class B and class C protocol support</p></li>
<li><p>EU 868 MHz ISM band ETSI (European telecommunications standards institute) compliant</p></li>
<li><p>EU 433 MHz ISM band ETSI compliant</p></li>
<li><p>US 915 MHz ISM band FCC (federal communications commission) compliant</p></li>
<li><p>End-device activation either through OTAA (over-the-air activation) or ABP (activation-by-personalization)</p></li>
<li><p>Adaptive data rate support</p></li>
<li><p>LoRaWAN® test application for certification tests included</p></li>
<li><p>Low-power optimized</p></li>
<li><p>Full STM32 portfolio compatibility</p></li>
<li><p>Compliant with the CMWX1ZZABZ-091 LoRa® module from Murata</p></li>
<li><p>Compliant with the WM-SG-SM-42 LoRa®module from USI</p></li>
<li><p>Compliant with the RHF0M003 modem from RiSiNGHF®</p></li>
<li><p>Easy secure element integration</p></li>
</ul>
<p>Here is the list of references to user documents:</p>
<ul>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00300436.pdf">UM2073</a> : STM32 LoRa® software expansion for STM32Cube™</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00432311.pdf">UM2285</a> : Development guidelines for STM32Cube Expansion Packages</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/user_manual/DM00447523.pdf">UM2312</a> : Development checklist for STM32Cube Expansion Packages</li>
<li><a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/application_note/DM00346311.pdf">AN4967</a> : Examples of AT commands on I-CUBE-LRWAN</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-section16" checked aria-hidden="true"> <label for="collapse-section16" aria-hidden="true">V1.3.1 / 06-December-2019</label>
<div>
<h2 id="main-changes">Main Changes</h2>
<h3 id="add-support-for-keil-and-sw4stm32-ides-in-fuota-example-for-nucleo-stm32l476rg">Add support for Keil and SW4STM32 IDEs in Fuota example for NUCLEO-STM32L476RG</h3>
<h2 id="contents">Contents</h2>
<h3 id="components">Components</h3>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>Release note</th>
<th>License</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32L0xx HAL Driver</td>
<td>V1.10.2</td>
<td><a href="Drivers/STM32L0xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32L1xx HAL Driver</td>
<td>V1.4.0</td>
<td><a href="Drivers/STM32L1xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32L4xx HAL Driver</td>
<td>V1.10.0</td>
<td><a href="Drivers/STM32L4xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">X-NUCLEO-IKS01A1</td>
<td>V3.0.0</td>
<td><a href="Drivers/BSP/X_NUCLEO_IKS01A1/Release_Notes.html">release notes</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">X-NUCLEO-IKS01A2</td>
<td>V3.0.0</td>
<td><a href="Drivers/BSP/X_NUCLEO_IKS01A2/Release_Notes.html">release notes</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sx1276mb1mas</td>
<td>V1.0.5</td>
<td><a href="Drivers/BSP/SX1276MB1MAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">sx1276mb1las</td>
<td>V1.0.5</td>
<td><a href="Drivers/BSP/SX1276MB1LAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sx1272mb2das</td>
<td>V1.0.4</td>
<td><a href="Drivers/BSP/SX1272MB2DAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">SX1261DVK1BAS</td>
<td>V1.0.1</td>
<td><a href="Drivers/BSP/SX1261DVK1BAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">SX1262DVK1CAS</td>
<td>V1.0.1</td>
<td><a href="Drivers/BSP/SX1262DVK1CAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">SX1262DVK1DAS</td>
<td>V1.0.1</td>
<td><a href="Drivers/BSP/SX1262DVK1DAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">B-L072Z-LRWAN1</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/B-L072Z-LRWAN1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">I_NUCLEO_LRWAN1</td>
<td>V1.0.3</td>
<td><a href="Drivers/BSP/I_NUCLEO_LRWAN1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">LRWAN_NS1</td>
<td>V1.0.3</td>
<td><a href="Drivers/BSP/LRWAN_NS1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">CMWX1ZZABZ-078</td>
<td>V1.0.4</td>
<td><a href="Drivers/BSP/CMWX1ZZABZ-0xx/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">MDM32L07X01</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/MDM32L07X01/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>Release note</th>
<th>License</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">LoRa Middleware</td>
<td style="text-align: left;">V1.3.1</td>
<td><a href="Middlewares/Third_Party/LoRaWAN/st_readme.txt">release notes ST</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations">Known Limitations</h2>
<ul>
<li>LoRa Class B Multicast is not supported</li>
</ul>
<h2 id="development-toolchains-and-compilers">Development Toolchains and Compilers</h2>
<ul>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.27.1.0 + ST- Link<br />
</li>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.32.3 + ST-Link<br />
</li>
<li>System Workbench for STM32 (SW4STM32) toolchain V2.3.1 + ST-Link</li>
</ul>
<h2 id="supported-devices-and-boards">Supported Devices and boards</h2>
<ul>
<li>B-L072Z-LRWAN1 Board RevC</li>
<li>STM32L053R8, STM32L073RZ, STM32L152RE and STM32L476RG</li>
<li>NUCLEO-L053R8 Board RevC</li>
<li>NUCLEO-L073RZ Board RevC</li>
<li>NUCLEO-L152RE Board RevC</li>
<li>NUCLEO-L476RG Board RevC</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section15" aria-hidden="true"> <label for="collapse-section15" aria-hidden="true">V1.3.0 / 04-November-2019</label>
<div>
<h2 id="main-changes-1">Main Changes</h2>
<h3 id="implementation-of-lora-mac-4.4.2-release-from-semtechstackforce">Implementation of LoRa Mac 4.4.2 release from Semtech/StackForce</h3>
<h3 id="fuota-example-for-nucleo-stm32l476rg">Fuota example for NUCLEO-STM32L476RG</h3>
<h3 id="battery-level-conversion-from-mv-to-0-254-range-moved-into-application-layer">Battery level conversion from mV to 0-254 range moved into application layer</h3>
<h3 id="modification-of-at_slave-commands-attconf-to-handle-frequency-in-hz">Modification of AT_Slave commands AT+TCONF to handle frequency in Hz</h3>
<h3 id="version-format-and-display-modified">Version format and display modified</h3>
<h3 id="new-folder-architecture-in-lorawan-middleware-including-semtechs-lmhandler">New folder architecture in LoRaWAN Middleware including Semtech’s LmHandler</h3>
<h3 id="various-bug-fixes-wrong-buffer-sizes">Various bug fixes (wrong buffer sizes)</h3>
<h2 id="contents-1">Contents</h2>
<h3 id="components-1">Components</h3>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>Release note</th>
<th>License</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32L0xx HAL Driver</td>
<td>V1.10.2</td>
<td><a href="Drivers/STM32L0xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32L1xx HAL Driver</td>
<td>V1.4.0</td>
<td><a href="Drivers/STM32L1xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32L4xx HAL Driver</td>
<td>V1.10.0</td>
<td><a href="Drivers/STM32L4xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">X-NUCLEO-IKS01A1</td>
<td>V3.0.0</td>
<td><a href="Drivers/BSP/X_NUCLEO_IKS01A1/Release_Notes.html">release notes</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">X-NUCLEO-IKS01A2</td>
<td>V3.0.0</td>
<td><a href="Drivers/BSP/X_NUCLEO_IKS01A2/Release_Notes.html">release notes</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sx1276mb1mas</td>
<td>V1.0.5</td>
<td><a href="Drivers/BSP/SX1276MB1MAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">sx1276mb1las</td>
<td>V1.0.5</td>
<td><a href="Drivers/BSP/SX1276MB1LAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sx1272mb2das</td>
<td>V1.0.4</td>
<td><a href="Drivers/BSP/SX1272MB2DAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">SX1261DVK1BAS</td>
<td>V1.0.1</td>
<td><a href="Drivers/BSP/SX1261DVK1BAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">SX1262DVK1CAS</td>
<td>V1.0.1</td>
<td><a href="Drivers/BSP/SX1262DVK1CAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">SX1262DVK1DAS</td>
<td>V1.0.1</td>
<td><a href="Drivers/BSP/SX1262DVK1DAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">B-L072Z-LRWAN1</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/B-L072Z-LRWAN1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">I_NUCLEO_LRWAN1</td>
<td>V1.0.3</td>
<td><a href="Drivers/BSP/I_NUCLEO_LRWAN1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">LRWAN_NS1</td>
<td>V1.0.3</td>
<td><a href="Drivers/BSP/LRWAN_NS1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">CMWX1ZZABZ-078</td>
<td>V1.0.4</td>
<td><a href="Drivers/BSP/CMWX1ZZABZ-0xx/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">MDM32L07X01</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/MDM32L07X01/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>Release note</th>
<th>License</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">LoRa Middleware</td>
<td style="text-align: left;">V1.3.1</td>
<td><a href="Middlewares/Third_Party/LoRaWAN/st_readme.txt">release notes ST</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations-1">Known Limitations</h2>
<ul>
<li>LoRa Class B Multicast is not supported</li>
</ul>
<h2 id="development-toolchains-and-compilers-1">Development Toolchains and Compilers</h2>
<ul>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.27.1.0 + ST- Link<br />
</li>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.32.3 + ST-Link<br />
</li>
<li>System Workbench for STM32 (SW4STM32) toolchain V2.3.1 + ST-Link</li>
</ul>
<h2 id="supported-devices-and-boards-1">Supported Devices and boards</h2>
<ul>
<li>B-L072Z-LRWAN1 Board RevC</li>
<li>STM32L053R8, STM32L073RZ, STM32L152RE and STM32L476RG</li>
<li>NUCLEO-L053R8 Board RevC</li>
<li>NUCLEO-L073RZ Board RevC</li>
<li>NUCLEO-L152RE Board RevC</li>
<li>NUCLEO-L476RG Board RevC</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section14" aria-hidden="true"> <label for="collapse-section14" aria-hidden="true">V1.2.3 / 26-September-2019</label>
<div>
<h2 id="main-changes-2">Main Changes</h2>
<h3 id="update-of-at_master-project-to-prevent-fw-from-freezing-after-entering-low-power-mode">Update of AT_Master project to prevent FW from freezing after entering low power mode</h3>
<h2 id="contents-2">Contents</h2>
<h3 id="components-2">Components</h3>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>Release note</th>
<th>License</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32L0xx HAL Driver</td>
<td>V1.10.2</td>
<td><a href="Drivers/STM32L0xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32L1xx HAL Driver</td>
<td>V1.4.0</td>
<td><a href="Drivers/STM32L1xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32L4xx HAL Driver</td>
<td>V1.10.0</td>
<td><a href="Drivers/STM32L4xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">X-NUCLEO-IKS01A1</td>
<td>V3.0.0</td>
<td><a href="Drivers/BSP/X_NUCLEO_IKS01A1/Release_Notes.html">release notes</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">X-NUCLEO-IKS01A2</td>
<td>V3.0.0</td>
<td><a href="Drivers/BSP/X_NUCLEO_IKS01A2/Release_Notes.html">release notes</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sx1276mb1mas</td>
<td>V1.0.5</td>
<td><a href="Drivers/BSP/SX1276MB1MAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">sx1276mb1las</td>
<td>V1.0.5</td>
<td><a href="Drivers/BSP/SX1276MB1LAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sx1272mb2das</td>
<td>V1.0.4</td>
<td><a href="Drivers/BSP/SX1272MB2DAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">SX1261DVK1BAS</td>
<td>V1.0.1</td>
<td><a href="Drivers/BSP/SX1261DVK1BAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">SX1262DVK1CAS</td>
<td>V1.0.1</td>
<td><a href="Drivers/BSP/SX1262DVK1CAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">SX1262DVK1DAS</td>
<td>V1.0.1</td>
<td><a href="Drivers/BSP/SX1262DVK1DAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">B-L072Z-LRWAN1</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/B-L072Z-LRWAN1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">I_NUCLEO_LRWAN1</td>
<td>V1.0.3</td>
<td><a href="Drivers/BSP/I_NUCLEO_LRWAN1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">LRWAN_NS1</td>
<td>V1.0.3</td>
<td><a href="Drivers/BSP/LRWAN_NS1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">CMWX1ZZABZ-078</td>
<td>V1.0.4</td>
<td><a href="Drivers/BSP/CMWX1ZZABZ-0xx/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">MDM32L07X01</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/MDM32L07X01/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>Release note</th>
<th>License</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">LoRa Middleware</td>
<td style="text-align: left;">V1.3.0</td>
<td><a href="Middlewares/Third_Party/LoRaWAN/st_readme.txt">release notes ST</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations-2">Known Limitations</h2>
<ul>
<li>LoRa Class B Multicast is not supported</li>
</ul>
<h2 id="development-toolchains-and-compilers-2">Development Toolchains and Compilers</h2>
<ul>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.27.1.0 + ST- Link<br />
</li>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.32.3 + ST-Link<br />
</li>
<li>System Workbench for STM32 (SW4STM32) toolchain V2.3.1 + ST-Link</li>
</ul>
<h2 id="supported-devices-and-boards-2">Supported Devices and boards</h2>
<ul>
<li>B-L072Z-LRWAN1 Board RevC</li>
<li>STM32L053R8, STM32L073RZ, STM32L152RE and STM32L476RG</li>
<li>NUCLEO-L053R8 Board RevC</li>
<li>NUCLEO-L073RZ Board RevC</li>
<li>NUCLEO-L152RE Board RevC</li>
<li>NUCLEO-L476RG Board RevC</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section13" aria-hidden="true"> <label for="collapse-section13" aria-hidden="true">V1.2.2 / 10-July-2019</label>
<div>
<h2 id="main-changes-3">Main Changes</h2>
<h3 id="implementation-of-lora-mac-from-semtechstackforce-develop-branch-17-jun-2019-commits">Implementation of LoRa Mac from Semtech/StackForce develop branch (17-Jun-2019 commits)</h3>
<h3 id="fix-for-issue-of-increasing-power-consumption-over-time">Fix for issue of increasing power consumption over time</h3>
<h3 id="fix-for-rtc-bugs-about-rollover-after-48-days-and-wrong-calculation-of-rtc-alarm">Fix for RTC bugs about rollover after 48 days and wrong calculation of RTC alarm</h3>
<h3 id="modification-of-at_slave-commands-atttlra-and-attrlra">Modification of AT_Slave commands AT+TTLRA and AT+TRLRA</h3>
<h3 id="fix-for-at_slave-endianness-issues-in-displayed-values-of-device-address-and-network-id">Fix for AT_Slave endianness issues in displayed values of device address and network ID</h3>
<h3 id="fix-for-at_slave-issue-with-crlf-handling">Fix for AT_Slave issue with <CR><LF> handling</h3>
<h3 id="device-eui-stored-in-eeprom-for-at_master">Device EUI stored in EEPROM for AT_Master</h3>
<h2 id="contents-3">Contents</h2>
<h3 id="components-3">Components</h3>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>Release note</th>
<th>License</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32L0xx HAL Driver</td>
<td>V1.10.2</td>
<td><a href="Drivers/STM32L0xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32L1xx HAL Driver</td>
<td>V1.4.0</td>
<td><a href="Drivers/STM32L1xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32L4xx HAL Driver</td>
<td>V1.10.0</td>
<td><a href="Drivers/STM32L4xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">X-NUCLEO-IKS01A1</td>
<td>V3.0.0</td>
<td><a href="Drivers/BSP/X_NUCLEO_IKS01A1/Release_Notes.html">release notes</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">X-NUCLEO-IKS01A2</td>
<td>V3.0.0</td>
<td><a href="Drivers/BSP/X_NUCLEO_IKS01A2/Release_Notes.html">release notes</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sx1276mb1mas</td>
<td>V1.0.5</td>
<td><a href="Drivers/BSP/SX1276MB1MAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">sx1276mb1las</td>
<td>V1.0.5</td>
<td><a href="Drivers/BSP/SX1276MB1LAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sx1272mb2das</td>
<td>V1.0.4</td>
<td><a href="Drivers/BSP/SX1272MB2DAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">SX1261DVK1BAS</td>
<td>V1.0.1</td>
<td><a href="Drivers/BSP/SX1261DVK1BAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">SX1262DVK1CAS</td>
<td>V1.0.1</td>
<td><a href="Drivers/BSP/SX1262DVK1CAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">SX1262DVK1DAS</td>
<td>V1.0.1</td>
<td><a href="Drivers/BSP/SX1262DVK1DAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">B-L072Z-LRWAN1</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/B-L072Z-LRWAN1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">I_NUCLEO_LRWAN1</td>
<td>V1.0.2</td>
<td><a href="Drivers/BSP/I_NUCLEO_LRWAN1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">LRWAN_NS1</td>
<td>V1.0.3</td>
<td><a href="Drivers/BSP/LRWAN_NS1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">CMWX1ZZABZ-078</td>
<td>V1.0.4</td>
<td><a href="Drivers/BSP/CMWX1ZZABZ-0xx/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">MDM32L07X01</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/MDM32L07X01/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>Release note</th>
<th>License</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">LoRa Middleware</td>
<td style="text-align: left;">V1.3.0</td>
<td><a href="Middlewares/Third_Party/LoRaWAN/st_readme.txt">release notes ST</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations-3">Known Limitations</h2>
<ul>
<li>LoRa Class B Multicast is not supported</li>
</ul>
<h2 id="development-toolchains-and-compilers-3">Development Toolchains and Compilers</h2>
<ul>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.27.1.0 + ST- Link<br />
</li>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.32.3 + ST-Link<br />
</li>
<li>System Workbench for STM32 (SW4STM32) toolchain V2.3.1 + ST-Link</li>
</ul>
<h2 id="supported-devices-and-boards-3">Supported Devices and boards</h2>
<ul>
<li>B-L072Z-LRWAN1 Board RevC</li>
<li>STM32L053R8, STM32L073RZ, STM32L152RE and STM32L476RG</li>
<li>NUCLEO-L053R8 Board RevC</li>
<li>NUCLEO-L073RZ Board RevC</li>
<li>NUCLEO-L152RE Board RevC</li>
<li>NUCLEO-L476RG Board RevC</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section12" aria-hidden="true"> <label for="collapse-section12" aria-hidden="true">V1.2.1 / 13-December-2018</label>
<div>
<h2 id="main-changes-4">Main Changes</h2>
<h3 id="implementation-of-lora-mac-4.4.2-rc.5-from-semtechstackforce-develop-branch">Implementation of LoRa Mac 4.4.2-rc.5 from Semtech/StackForce develop branch</h3>
<h3 id="class-b-support-extended-to-at_slave-example">Class B support extended to AT_Slave example</h3>
<h3 id="new-notification-mechanism-for-lora-mac-layer-processing">New notification mechanism for LoRa Mac layer processing</h3>
<h3 id="update-of-radio-drivers">Update of radio drivers</h3>
<h3 id="various-bug-fixes">Various bug fixes</h3>
<h3 id="hybrid-mode-for-us915-region-for-test-purpose-only-not-compliant-with-certification-requirements">Hybrid mode for US915 region (for test purpose only, not compliant with certification requirements)</h3>
<h2 id="contents-4">Contents</h2>
<h3 id="components-4">Components</h3>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>Release note</th>
<th>License</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32L0xx HAL Driver</td>
<td>V1.9.0</td>
<td><a href="Drivers/STM32L0xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32L1xx HAL Driver</td>
<td>V1.3.1</td>
<td><a href="Drivers/STM32L1xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32L4xx HAL Driver</td>
<td>V1.8.3</td>
<td><a href="Drivers/STM32L4xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">X-NUCLEO-IKS01A1</td>
<td>V3.0.0</td>
<td><a href="Drivers/BSP/X_NUCLEO_IKS01A1/Release_Notes.html">release notes</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">X-NUCLEO-IKS01A2</td>
<td>V3.0.0</td>
<td><a href="Drivers/BSP/X_NUCLEO_IKS01A2/Release_Notes.html">release notes</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sx1276mb1mas</td>
<td>V1.0.4</td>
<td><a href="Drivers/BSP/SX1276MB1MAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">sx1276mb1las</td>
<td>V1.0.4</td>
<td><a href="Drivers/BSP/SX1276MB1LAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sx1272mb2das</td>
<td>V1.0.4</td>
<td><a href="Drivers/BSP/SX1272MB2DAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">SX1261DVK1BAS</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/SX1261DVK1BAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">SX1262DVK1CAS</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/SX1262DVK1CAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">SX1262DVK1DAS</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/SX1262DVK1DAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">B-L072Z-LRWAN1</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/B-L072Z-LRWAN1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">I_NUCLEO_LRWAN1</td>
<td>V1.0.1</td>
<td><a href="Drivers/BSP/I_NUCLEO_LRWAN1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">LRWAN_NS1</td>
<td>V1.0.3</td>
<td><a href="Drivers/BSP/LRWAN_NS1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">CMWX1ZZABZ-078</td>
<td>V1.0.3</td>
<td><a href="Drivers/BSP/CMWX1ZZABZ-0xx/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">MDM32L07X01</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/MDM32L07X01/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th style="text-align: left;">Version</th>
<th>Release note</th>
<th>License</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">LoRa Middleware</td>
<td style="text-align: left;">V1.2.1</td>
<td><a href="Middlewares/Third_Party/LoRaWAN/st_readme.txt">release notes ST</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
</tbody>
</table>
<h2 id="known-limitations-4">Known Limitations</h2>
<ul>
<li>LoRa Class B Multicast is not supported</li>
</ul>
<h2 id="development-toolchains-and-compilers-4">Development Toolchains and Compilers</h2>
<ul>
<li>RealView Microcontroller Development Kit (MDK-ARM) toolchain V5.25 + ST- Link<br />
</li>
<li>IAR Embedded Workbench for ARM (EWARM) toolchain V8.30.1 + ST-Link<br />
</li>
<li>System Workbench for STM32 (SW4STM32) toolchain V2.3.1 + ST-Link</li>
</ul>
<h2 id="supported-devices-and-boards-4">Supported Devices and boards</h2>
<ul>
<li>B-L072Z-LRWAN1 Board RevC</li>
<li>STM32L053R8, STM32L073RZ, STM32L152RE and STM32L476RG</li>
<li>NUCLEO-L053R8 Board RevC</li>
<li>NUCLEO-L073RZ Board RevC</li>
<li>NUCLEO-L152RE Board RevC</li>
<li>NUCLEO-L476RG Board RevC</li>
</ul>
</div>
</div>
<div class="collapse">
<input type="checkbox" id="collapse-section11" aria-hidden="true"> <label for="collapse-section11" aria-hidden="true">V1.2.0 / 10-July-2018</label>
<div>
<h2 id="main-changes-5">Main Changes</h2>
<h3 id="implementation-of-lora-mac-4.4.2-rc.1-from-semtechstackforce-develop-branch">Implementation of LoRa Mac 4.4.2-rc.1 from Semtech/StackForce develop branch</h3>
<h3 id="class-b-support">Class B support</h3>
<h3 id="secure-element-api-added">Secure Element API added</h3>
<h3 id="new-ru864-region">New RU864 region</h3>
<h3 id="driver-for-new-sx126x-radio-and-support-for-sx1261dvk1bas-sx1262dvk1cas-and-sx1262dvk1das-shields">Driver for new sx126x radio and support for sx1261dvk1bas, sx1262dvk1cas and sx1262dvk1das shields</h3>
<h3 id="fw-package-architecture-rework">FW package architecture rework</h3>
<h2 id="contents-5">Contents</h2>
<h3 id="components-5">Components</h3>
<table>
<caption>Drivers</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>
<th>Version</th>
<th>Release note</th>
<th>License</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">STM32L0xx HAL Driver</td>
<td>V1.8.1</td>
<td><a href="Drivers/STM32L0xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">STM32L1xx HAL Driver</td>
<td>V1.3.0</td>
<td><a href="Drivers/STM32L1xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">STM32L4xx HAL Driver</td>
<td>V1.8.2</td>
<td><a href="Drivers/STM32L4xx_HAL_Driver/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">X-NUCLEO-IKS01A1</td>
<td>V3.0.0</td>
<td><a href="Drivers/BSP/X_NUCLEO_IKS01A1/Release_Notes.html">release notes</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">X-NUCLEO-IKS01A2</td>
<td>V3.0.0</td>
<td><a href="Drivers/BSP/X_NUCLEO_IKS01A2/Release_Notes.html">release notes</a></td>
<td><a href="http://www.st.com/SLA0044">SLA0044</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sx1276mb1mas</td>
<td>V1.0.4</td>
<td><a href="Drivers/BSP/SX1276MB1MAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">sx1276mb1las</td>
<td>V1.0.4</td>
<td><a href="Drivers/BSP/SX1276MB1LAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">sx1272mb2das</td>
<td>V1.0.4</td>
<td><a href="Drivers/BSP/SX1272MB2DAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">SX1261DVK1BAS</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/SX1261DVK1BAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">SX1262DVK1CAS</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/SX1262DVK1CAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">SX1262DVK1DAS</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/SX1262DVK1DAS/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">B-L072Z-LRWAN1</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/B-L072Z-LRWAN1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">I_NUCLEO_LRWAN1</td>
<td>V1.0.1</td>
<td><a href="Drivers/BSP/I_NUCLEO_LRWAN1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">LRWAN_NS1</td>
<td>V1.0.3</td>
<td><a href="Drivers/BSP/LRWAN_NS1/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="odd">
<td style="text-align: left;">CMWX1ZZABZ-078</td>
<td>V1.0.3</td>
<td><a href="Drivers/BSP/CMWX1ZZABZ-0xx/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
<tr class="even">
<td style="text-align: left;">MDM32L07X01</td>
<td>V1.0.0</td>
<td><a href="Drivers/BSP/MDM32L07X01/Release_Notes.html">release notes</a></td>
<td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td>
</tr>
</tbody>
</table>
<table>
<caption>Middleware</caption>
<thead>
<tr class="header">
<th style="text-align: left;">Name</th>