summaryrefslogtreecommitdiff
path: root/recipes-connectivity/lora/lora-packet-forwarder
diff options
context:
space:
mode:
authorJason Reiss <jreiss@multitech.com>2016-12-07 16:42:46 -0600
committerJason Reiss <jreiss@multitech.com>2016-12-07 16:42:46 -0600
commitdaa0a09494c05932ddac2923382056003fc536be (patch)
tree517a5d5e4c35b99e6148ad681aa2bb1f5b293001 /recipes-connectivity/lora/lora-packet-forwarder
parenta45e7e34734aaba132408f72bfa3485a963995aa (diff)
downloadmeta-mlinux-daa0a09494c05932ddac2923382056003fc536be.tar.gz
meta-mlinux-daa0a09494c05932ddac2923382056003fc536be.tar.bz2
meta-mlinux-daa0a09494c05932ddac2923382056003fc536be.zip
lora: patch packet forwarder to parse configuration when radio is disabled
Diffstat (limited to 'recipes-connectivity/lora/lora-packet-forwarder')
-rw-r--r--recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder-parse-config-params-when-radio-disabled.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder-parse-config-params-when-radio-disabled.patch b/recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder-parse-config-params-when-radio-disabled.patch
new file mode 100644
index 0000000..0e7ded9
--- /dev/null
+++ b/recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder-parse-config-params-when-radio-disabled.patch
@@ -0,0 +1,25 @@
+diff --git a/lora_pkt_fwd/src/lora_pkt_fwd.c b/lora_pkt_fwd/src/lora_pkt_fwd.c
+index 1c54d57..92f25e3 100644
+--- a/lora_pkt_fwd/src/lora_pkt_fwd.c
++++ b/lora_pkt_fwd/src/lora_pkt_fwd.c
+@@ -471,7 +471,8 @@ static int parse_SX1301_configuration(const char * conf_file) {
+ }
+ if (rfconf.enable == false) { /* radio disabled, nothing else to parse */
+ MSG("INFO: radio %i disabled\n", i);
+- } else { /* radio enabled, will parse the other parameters */
++ }
++// } else { /* radio enabled, will parse the other parameters */
+ snprintf(param_name, sizeof param_name, "radio_%i.freq", i);
+ rfconf.freq_hz = (uint32_t)json_object_dotget_number(conf_obj, param_name);
+ snprintf(param_name, sizeof param_name, "radio_%i.rssi_offset", i);
+@@ -505,8 +506,8 @@ static int parse_SX1301_configuration(const char * conf_file) {
+ } else {
+ rfconf.tx_enable = false;
+ }
+- MSG("INFO: radio %i enabled (type %s), center frequency %u, RSSI offset %f, tx enabled %d, tx_notch_freq %u\n", i, str, rfconf.freq_hz, rfconf.rssi_offset, rfconf.tx_enable, rfconf.tx_notch_freq);
+- }
++ MSG("INFO: radio %i %sabled (type %s), center frequency %u, RSSI offset %f, tx enabled %d, tx_notch_freq %u\n", i, (rfconf.enable?"en":"dis"), str, rfconf.freq_hz, rfconf.rssi_offset, rfconf.tx_enable, rfconf.tx_notch_freq);
++// }
+ /* all parameters parsed, submitting configuration to the HAL */
+ if (lgw_rxrf_setconf(i, rfconf) != LGW_HAL_SUCCESS) {
+ MSG("ERROR: invalid configuration for radio %i\n", i);