Skip to content

Commit 94c7463

Browse files
authored
Merge pull request #15062 from jeromecoutant/PR_LORABARE
Lora drivers: explicit lib requirement
2 parents c8b489e + fe1adbc commit 94c7463

File tree

6 files changed

+6
-1
lines changed

6 files changed

+6
-1
lines changed

connectivity/drivers/lora/COMPONENT_SX126X/mbed_lib.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "SX126X-lora-driver",
3+
"requires": ["lora"],
34
"config": {
45
"spi-frequency": {
56
"help": "SPI frequency, Default: 16 MHz",

connectivity/drivers/lora/COMPONENT_SX1272/mbed_lib.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "sx1272-lora-driver",
3+
"requires": ["lora"],
34
"config": {
45
"spi-frequency": {
56
"help": "SPI frequency, Default: 8 MHz",

connectivity/drivers/lora/COMPONENT_SX1276/mbed_lib.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "sx1276-lora-driver",
3+
"requires": ["lora"],
34
"config": {
45
"spi-frequency": {
56
"help": "SPI frequency, Default: 8 MHz",

connectivity/drivers/lora/TARGET_STM32WL/mbed_lib.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "stm32wl-lora-driver",
3+
"requires": ["lora"],
34
"config": {
45
"buffer-size": {
56
"help": "Max. buffer size the radio can handle, Default: 255 B",

connectivity/lorawan/mbed_lib.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "lora",
3+
"requires": ["mbedtls", "events"],
34
"config": {
45
"phy": {
56
"help": "LoRa PHY region: EU868, AS923, AU915, CN470, CN779, EU433, IN865, KR920, US915",

targets/TARGET_STM/TARGET_STM32WL/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Baremetal is supported.
5050
mbed_app.json:
5151
```
5252
{
53-
"requires": ["bare-metal", "lora", "stm32wl-lora-driver"]
53+
"requires": ["bare-metal", "stm32wl-lora-driver"]
5454
}
5555
```
5656

0 commit comments

Comments
 (0)