summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarsh Sharma <92harshsharma@gmail.com>2018-06-13 13:47:23 -0500
committerHarsh Sharma <92harshsharma@gmail.com>2018-06-13 13:47:23 -0500
commit9597666d1fe7f18c789f8688ecd5e7ec3e9ab801 (patch)
tree6167e47f48b30499049414af6c20f5ec88d5b211
parent06d7f22b12d9f11586312c25add92de58a1cebf8 (diff)
downloadpacket_forwarder_mtac_full-9597666d1fe7f18c789f8688ecd5e7ec3e9ab801.tar.gz
packet_forwarder_mtac_full-9597666d1fe7f18c789f8688ecd5e7ec3e9ab801.tar.bz2
packet_forwarder_mtac_full-9597666d1fe7f18c789f8688ecd5e7ec3e9ab801.zip
Applied patch: lora-packet-forwarder-add-spi-dev-path
-rw-r--r--lora_pkt_fwd/src/lora_pkt_fwd.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/lora_pkt_fwd/src/lora_pkt_fwd.c b/lora_pkt_fwd/src/lora_pkt_fwd.c
index e69bc88..811dee3 100644
--- a/lora_pkt_fwd/src/lora_pkt_fwd.c
+++ b/lora_pkt_fwd/src/lora_pkt_fwd.c
@@ -130,6 +130,7 @@ static bool fwd_nocrc_pkt = false; /* packets with NO PAYLOAD CRC are NOT forwar
/* network configuration variables */
static uint64_t lgwm = 0; /* Lora gateway MAC address */
static char serv_addr[64] = STR(DEFAULT_SERVER); /* address of the server (host name or IPv4/IPv6) */
+static char spi_device_path[64] = {0} ; /* custom SPI device path */
static char serv_port_up[8] = STR(DEFAULT_PORT_UP); /* server port for upstream traffic */
static char serv_port_down[8] = STR(DEFAULT_PORT_DW); /* server port for downstream traffic */
static int keepalive_time = DEFAULT_KEEPALIVE; /* send a PULL_DATA request every X seconds, negative = disabled */
@@ -698,6 +699,13 @@ static int parse_gateway_configuration(const char * conf_file) {
MSG("INFO: server hostname or IP address is configured to \"%s\"\n", serv_addr);
}
+ /* spi device path (optional) */
+ str = json_object_get_string(conf_obj, "spi_device");
+ if (str != NULL) {
+ strncpy(spi_device_path, str, sizeof(spi_device_path)-1);
+ MSG("INFO: SPI device is configured to \"%s\"\n", spi_device_path);
+ }
+
/* get up and down ports (optional) */
val = json_object_get_value(conf_obj, "serv_port_up");
if (val != NULL) {
@@ -1191,6 +1199,11 @@ int main(void)
}
freeaddrinfo(result);
+ /* set custom SPI device path if configured */
+ if (strlen(spi_device_path) > 0)
+ lgw_spi_set_path(spi_device_path);
+
+
/* starting the concentrator */
i = lgw_start();
if (i == LGW_HAL_SUCCESS) {