You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+37-7
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
-
# SWSD006 - LR11xx Multi-stack Software Development Kit for nRF52840
1
+
# SWSD006 - LR11xx Multi-stack Software Development Kit for nRF52840 & nRF54L15
2
2
3
3
SWSD006 is a collection of driver, protocol stack and utility software that facilitates development of Sidewalk
4
4
applications. The software includes numerous examples of how to leverage the unique capabilities of Semtech's LR11xx silicon.
5
-
While the software targets the Nordic nRF52840 MCU, it is designed and distributed as a "full-source" offering, it enables users to modify
5
+
While the software targets the Nordic SoC, it is designed and distributed as a "full-source" offering, it enables users to modify
6
6
the contents across multiple layers of software stack. Potential modifications include re-targeting of host MCU and LR11xx silicon,
7
7
changes to the platform abstraction layer and enhancement of the packet fragmentation scheme.
8
8
Please note that while software enhancement is enabled and encouraged, validation of described functionality was exclusively performed on the specified silicon variants and software component versions.
@@ -11,7 +11,7 @@ This repository implements the following functionality:
11
11
- LR11xx transceiver silicon support for Sidewalk MAC v1.16 CSS and FSK modulation
12
12
- Drivers and examples demonstrating WIFI/GNSS NAV3 geolocation features of LR11xx silicon
13
13
- LoRaWAN Class A multi-stack operation using SWL2001 - LoRa Basics Modem 4.5.0; programmatic control over both LoRaWAN and Sidewalk stacks in one firmware image
14
-
- LR11xx transceiver firmware upgrade via SWTL001 port to nRF52840
14
+
- LR11xx transceiver firmware upgrade via SWTL001 port to nRF52840 (or nRF54L15)
15
15
- LoRaWAN Class A + WIFI/GNSS NAV3 operation example
16
16
- An example of packet fragmentation and re-assembly (overcomes CSS packet size limitations in Sidewalk)
17
17
- AWS lambda example code demonstrating End-to-End handling of LoRa EDGE application data: from transceiver to cloud service
If you intend to build a LoRa Basics Modem project on the windows platform, decide on a workspace location as near the root directory as possible in order to prevent path lengths that exceed the capability of the zephyr build system on windows. This is not a concern on other platforms such as linux.
44
45
### configuring project for LR11xx
@@ -55,26 +56,55 @@ LR1121 device would typically be used with an XTAL, since it doesnt have GNSS fu
55
56
All radio other configuration is declared in ``app_subGHz_config_lr11xx.c``, For example if you wanted to use the radio's LDO instead of it's DC-DC, you can modify the ``.regulator_mode = `` to ``LR11XX_SYSTEM_REG_MODE_LDO``
56
57
### Available example applications:
57
58
all example apps are built using ``west build -b <board> -- -DOVERLAY_CONFIG=foobar.conf``. The app to build is selected by adding ``-- -DOVERLAY_CONFIG=foobar.conf``
58
-
* the full build command, for example: ``west build -b nrf52840dk_nrf52840 -- -DOVERLAY_CONFIG=overlay-nav3sid.conf``
59
-
#### apps provided by Nordic:
59
+
* the full build command, for example:
60
+
| Hardware platforms | Board name | Build command |
For nRF54L15 PDK revision v0.3.0/0.7.0 use the following GPIO configuration:
67
+
68
+
| nRF54L15 PDK | LR1110MB1LCKS |
69
+
| -------------- | ---------- |
70
+
| P2.06 | SCK |
71
+
| P1.11 | MISO |
72
+
| P2.08 | MOSI |
73
+
| P2.10 | CS |
74
+
| P0.02 | LR_NRESET |
75
+
| P0.00 | BUSY |
76
+
| P0.01 | ACC_INT1 |
77
+
| P0.03 | DIO9 |
78
+
| P1.12 | LNA_CTRL_MCU |
79
+
80
+
> **NOTE**
81
+
>
82
+
> To use the suggested pins, disable ``VCOM0`` (not used by samples) through the [Board Configurator](https://docs.nordicsemi.com/bundle/nrf-connect-board-configurator/page/index.html) tool in the nRF Connect for Desktop.
83
+
> This step is required for the shield to work as some pins are connected to ``VCOM0`` by default.
84
+
>
85
+
> See the picture below for ``VCOM0`` suggested configuration:
from the directory ``samples/sid_end_device`` enables LR11xx in ``prj.conf`` -->
61
90
* hello
62
91
*``-DOVERLAY_CONFIG=overlay-hello.conf``
63
92
* sensor_monitoring
64
93
*``-DOVERLAY_CONFIG=overlay-demo.conf``
65
94
* dut, aka ``sid_dut``
66
95
*``-DOVERLAY_CONFIG=overlay-dut.conf``
67
-
#### apps added by Semtech:
96
+
#### Apps added by Semtech:
68
97
from the directory ``samples/lbm_sid_end_device`` -->
69
98
* lora basics modem (lorawan end device), running in sidewalk environment
70
99
*``-DOVERLAY_CONFIG=overlay-lbm.conf``
71
100
* NAV3 running simultanously with sidewalk (aka NAV3 in bypass mode):
72
101
*``-DOVERLAY_CONFIG=overlay-nav3sid.conf``
73
102
* NAV3 running in lora basics modem:
74
-
* `-DOVERLAY_CONFIG=overlay-nav3lbm.conf``
103
+
*``-DOVERLAY_CONFIG=overlay-nav3lbm.conf``
75
104
* LR11xx firmware update, and almanac erase:
76
105
* build in ``samples/SWTL001``directory
77
106
107
+
78
108
## GNSS Performance Evaluation Notice
79
109
80
110
The included GNSS example source code is provided solely to demonstrate the GNSS scan functionality under ideal conditions. The source code and GNSS scan results are not representative of the optimal configuration or performance characteristics of the silicon. The LR11xx product family is flexible and can be embodied and configured in a multitude of ways to realize various trade-offs regarding performance, battery life, PCB size, cost, etc. The GNSS example included in this release and the corresponding evaluation kits are designed & configured by the included source code in a default capacity which is sufficient to demonstrate functional GNSS scan capability only. Care must be taken if/when attempting to assess performance characteristics of GNSS scan functionality and we strongly encourage those conducting such analysis to contact Semtech via the provided support channels so that we can ensure appropriate configuration settings are employed for a given performance evaluation use-case.
0 commit comments