summaryrefslogtreecommitdiff
path: root/recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder-remove-jit-power-check.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder-remove-jit-power-check.patch')
-rw-r--r--recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder-remove-jit-power-check.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder-remove-jit-power-check.patch b/recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder-remove-jit-power-check.patch
deleted file mode 100644
index cbb226b..0000000
--- a/recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder-remove-jit-power-check.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/lora_pkt_fwd/src/lora_pkt_fwd.c b/lora_pkt_fwd/src/lora_pkt_fwd.c
-index 1c54d57..1e74d7f 100644
---- a/lora_pkt_fwd/src/lora_pkt_fwd.c
-+++ b/lora_pkt_fwd/src/lora_pkt_fwd.c
-@@ -2360,19 +2360,6 @@ void thread_down(void) {
- jit_result = JIT_ERROR_TX_FREQ;
- MSG("ERROR: Packet REJECTED, unsupported frequency - %u (min:%u,max:%u)\n", txpkt.freq_hz, tx_freq_min[txpkt.rf_chain], tx_freq_max[txpkt.rf_chain]);
- }
-- if (jit_result == JIT_ERROR_OK) {
-- for (i=0; i<txlut.size; i++) {
-- if (txlut.lut[i].rf_power == txpkt.rf_power) {
-- /* this RF power is supported, we can continue */
-- break;
-- }
-- }
-- if (i == txlut.size) {
-- /* this RF power is not supported */
-- jit_result = JIT_ERROR_TX_POWER;
-- MSG("ERROR: Packet REJECTED, unsupported RF power for TX - %d\n", txpkt.rf_power);
-- }
-- }
-
- /* insert packet to be sent into JIT queue */
- if (jit_result == JIT_ERROR_OK) {