-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18466 from benpicco/netdev_legacy_api-KConfig
cpu/{sam0_common, stm32}: select netdev_legacy_api in KConfig
- Loading branch information
Showing
4 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
pkg/lorabasics/patches/0003-ral_sx1280-fix-unused-parameter-warning.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
From 0606d43c2ea293d4ed96843406736a9b2a159fdd Mon Sep 17 00:00:00 2001 | ||
From: Benjamin Valentin <benjamin.valentin@ml-pa.com> | ||
Date: Thu, 18 Aug 2022 01:04:22 +0200 | ||
Subject: [PATCH] ral_sx1280: fix unused parameter warning | ||
|
||
--- | ||
smtc_ral/src/ral_sx1280.c | 6 ++++++ | ||
1 file changed, 6 insertions(+) | ||
|
||
diff --git a/smtc_ral/src/ral_sx1280.c b/smtc_ral/src/ral_sx1280.c | ||
index ecd8c03..bc75dff 100644 | ||
--- a/smtc_ral/src/ral_sx1280.c | ||
+++ b/smtc_ral/src/ral_sx1280.c | ||
@@ -474,11 +474,17 @@ ral_status_t ral_sx1280_setup_tx_flrc( const ral_t* ral, const ral_params_flrc_t | ||
|
||
ral_status_t ral_sx1280_setup_tx_lora_e( const ral_t* ral, const ral_params_lora_e_t* params ) | ||
{ | ||
+ (void)ral; | ||
+ (void)params; | ||
+ | ||
return RAL_STATUS_UNSUPPORTED_FEATURE; | ||
} | ||
|
||
ral_status_t ral_sx1280_tx_bpsk( const ral_t* ral, const ral_params_bpsk_t* params ) | ||
{ | ||
+ (void)ral; | ||
+ (void)params; | ||
+ | ||
return RAL_STATUS_UNSUPPORTED_FEATURE; | ||
} | ||
|
||
-- | ||
2.34.1 | ||
|