diff options
author | Jason Reiss <jreiss@multitech.com> | 2016-12-01 08:09:47 -0600 |
---|---|---|
committer | Jason Reiss <jreiss@multitech.com> | 2016-12-01 08:09:47 -0600 |
commit | 36a54c9b251e5b2592183ce3ff447e5285f095b9 (patch) | |
tree | 0bb20e7679878396047f4305eda43f0c03ae3e03 /recipes-connectivity/lora/lora-packet-forwarder | |
parent | a0d92e95f8b2438660c09cb8955362234fb1f1ea (diff) | |
download | meta-mlinux-36a54c9b251e5b2592183ce3ff447e5285f095b9.tar.gz meta-mlinux-36a54c9b251e5b2592183ce3ff447e5285f095b9.tar.bz2 meta-mlinux-36a54c9b251e5b2592183ce3ff447e5285f095b9.zip |
lora: remove JIT power check from packet forwarder. libloragw will pick the closest support power level from the LUT
Diffstat (limited to 'recipes-connectivity/lora/lora-packet-forwarder')
-rw-r--r-- | recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder-remove-jit-power-check.patch | 24 |
1 files changed, 24 insertions, 0 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 new file mode 100644 index 0000000..cbb226b --- /dev/null +++ b/recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder-remove-jit-power-check.patch @@ -0,0 +1,24 @@ +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) { |