2017-02-26 17:28:58 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
"""
|
|
|
|
Author: JP Meijers
|
|
|
|
Date: 2017-02-26
|
|
|
|
Based on: https://github.com/rayozzie/ttn-resin-gateway-rpi/blob/master/run.sh
|
|
|
|
"""
|
2017-02-26 17:35:46 +00:00
|
|
|
import os
|
2017-02-26 17:28:58 +00:00
|
|
|
import os.path
|
|
|
|
import sys
|
|
|
|
import urllib2
|
|
|
|
import time
|
|
|
|
import uuid
|
2017-02-26 17:58:09 +00:00
|
|
|
import json
|
2017-02-26 17:28:58 +00:00
|
|
|
import subprocess
|
|
|
|
try:
|
|
|
|
import RPi.GPIO as GPIO
|
|
|
|
except RuntimeError:
|
|
|
|
print("Error importing RPi.GPIO! This is probably because you need superuser privileges. You can achieve this by using 'sudo' to run your script")
|
|
|
|
|
|
|
|
GWID_PREFIX="FFFE"
|
|
|
|
|
2017-02-26 17:45:18 +00:00
|
|
|
if not os.path.exists("mp_pkt_fwd"):
|
2017-02-26 17:28:58 +00:00
|
|
|
print ("ERROR: gateway executable not found. Is it built yet?")
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
if os.environ.get('HALT') != None:
|
|
|
|
print ("*** HALT asserted - exiting ***")
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
# Show info about the machine we're running on
|
|
|
|
print ("*** Resin Machine Info:")
|
|
|
|
print ("*** Type: "+os.environ.get('RESIN_MACHINE_NAME'))
|
|
|
|
print ("*** Arch: "+os.environ.get('RESIN_ARCH'))
|
|
|
|
|
|
|
|
if os.environ.get("RESIN_HOST_CONFIG_core_freq")!=None:
|
|
|
|
print ("*** Core freq: "+os.environ.get('RESIN_HOST_CONFIG_core_freq'))
|
|
|
|
|
|
|
|
if os.environ.get("RESIN_HOST_CONFIG_dtoverlay")!=None:
|
|
|
|
print ("*** UART mode: "+os.environ.get('RESIN_HOST_CONFIG_dtoverlay'))
|
|
|
|
|
|
|
|
|
|
|
|
# Check if the correct environment variables are set
|
|
|
|
|
|
|
|
print ("*******************")
|
|
|
|
print ("*** Configuration:")
|
|
|
|
print ("*******************")
|
|
|
|
|
|
|
|
if os.environ.get("GW_ID")==None:
|
|
|
|
print ("ERROR: GW_ID required")
|
|
|
|
print ("See https://www.thethingsnetwork.org/docs/gateways/registration.html#via-gateway-connector")
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
if os.environ.get("GW_KEY")==None:
|
|
|
|
print ("ERROR: GW_KEY required")
|
|
|
|
print ("See https://www.thethingsnetwork.org/docs/gateways/registration.html#via-gateway-connector")
|
|
|
|
sys.exit(0)
|
|
|
|
|
2017-02-28 00:16:26 +00:00
|
|
|
# The FFFE should be inserted in the middle (so xxxxxxFFFExxxxxx)
|
|
|
|
my_eui = format(uuid.getnode(), '012x')
|
|
|
|
my_eui = my_eui[:6]+GWID_PREFIX+my_eui[6:]
|
2017-02-26 18:41:43 +00:00
|
|
|
my_eui = my_eui.upper()
|
2017-02-26 17:28:58 +00:00
|
|
|
|
|
|
|
print ("Gateway Type:\t"+os.environ.get("GW_TYPE"))
|
|
|
|
print ("Gateway ID:\t"+os.environ.get("GW_ID"))
|
|
|
|
print ("Gateway EUI:\t"+my_eui)
|
|
|
|
print ("Gateway Key:\t"+os.environ.get("GW_KEY"))
|
2017-02-26 17:58:09 +00:00
|
|
|
print ("Has hardware GPS:\t"+str(os.getenv('GW_GPS', False)))
|
|
|
|
print ("Hardware GPS port:\t"+os.getenv('GW_GPS_PORT', "/dev/ttyAMA0"))
|
2017-02-26 17:28:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
print ("*******************")
|
|
|
|
print ("*** Fetching config from TTN account server")
|
|
|
|
print ("*******************")
|
|
|
|
|
|
|
|
# Define default configs
|
|
|
|
description = ""
|
|
|
|
placement = ""
|
|
|
|
latitude = os.getenv('GW_REF_LATITUDE', 0)
|
|
|
|
longitude = os.getenv('GW_REF_LONGITUDE', 0)
|
|
|
|
altitude = os.getenv('GW_REF_ALTITUDE', 0)
|
|
|
|
frequency_plan_url = "https://account.thethingsnetwork.org/api/v2/frequency-plans/EU_863_870"
|
|
|
|
|
|
|
|
# Fetch config from TTN if TTN is enabled
|
|
|
|
if(os.getenv('SERVER_TTN', True)):
|
|
|
|
# Fetch the URL, if it fails try 30 seconds later again.
|
|
|
|
config_response = ""
|
|
|
|
try:
|
|
|
|
req = urllib2.Request('https://account.thethingsnetwork.org/gateways/'+os.environ.get("GW_ID"))
|
|
|
|
req.add_header('Authorization', 'Key '+os.environ.get("GW_KEY"))
|
|
|
|
response = urllib2.urlopen(req, timeout=30)
|
|
|
|
config_response = response.read()
|
|
|
|
except urllib2.URLError as err:
|
|
|
|
print ("Unable to fetch configuration from TTN")
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
# Parse config
|
|
|
|
ttn_config = {}
|
|
|
|
try:
|
|
|
|
ttn_config = json.loads(config_response)
|
|
|
|
except:
|
|
|
|
print ("Unable to parse configuration from TTN")
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
frequency_plan = ttn_config.get('frequency_plan')#, "EU_863_870")
|
|
|
|
frequency_plan_url = ttn_config.get('frequency_plan_url')#, "https://account.thethingsnetwork.org/api/v2/frequency-plans/EU_863_870")
|
|
|
|
router = ttn_config.get('router')#, "router.dev.thethings.network:1883")
|
2017-02-26 17:58:09 +00:00
|
|
|
router = router[:router.index(':')] #strip port from url, as the ttn library also adds this
|
2017-02-26 17:28:58 +00:00
|
|
|
|
|
|
|
if "attributes" in ttn_config:
|
|
|
|
description = ttn_config['attributes'].get('description', "")
|
|
|
|
placement = ttn_config['attributes'].get('placement', "unknown")
|
|
|
|
|
|
|
|
if "location" in ttn_config:
|
|
|
|
latitude = ttn_config['location'].get('lat', 0)
|
|
|
|
longitude = ttn_config['location'].get('lng', 0)
|
|
|
|
altitude = ttn_config.get('altitude', 0)
|
|
|
|
|
|
|
|
print ("Router:\t"+router)
|
|
|
|
print ("Frequency plan:\t"+frequency_plan)
|
|
|
|
print ("Frequency plan url:\t"+frequency_plan_url)
|
|
|
|
print ("Gateway description:\t"+description)
|
|
|
|
print ("Gateway placement:\t"+placement)
|
2017-02-26 17:58:09 +00:00
|
|
|
print ("Latitude:\t"+str(latitude))
|
|
|
|
print ("Longitude:\t"+str(longitude))
|
2017-02-26 17:28:58 +00:00
|
|
|
# Done fetching config from TTN
|
|
|
|
|
|
|
|
|
|
|
|
# Retrieve global_conf
|
|
|
|
global_conf = ""
|
|
|
|
try:
|
|
|
|
response = urllib2.urlopen(frequency_plan_url, timeout=30)
|
|
|
|
global_conf = response.read()
|
|
|
|
except urllib2.URLError as err:
|
|
|
|
print ("Unable to fetch global conf from Github")
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
# Write global_coonf
|
|
|
|
with open('global_conf.json', 'w') as the_file:
|
|
|
|
the_file.write(global_conf)
|
|
|
|
|
|
|
|
|
|
|
|
# Build local_conf
|
|
|
|
gateway_conf = {}
|
|
|
|
gateway_conf['gateway_ID'] = my_eui
|
|
|
|
gateway_conf['contact_email'] = os.getenv('GW_CONTACT_EMAIL', "")
|
|
|
|
gateway_conf['description'] = description
|
|
|
|
|
|
|
|
# Use hardware GPS
|
2017-02-26 18:41:43 +00:00
|
|
|
if(os.getenv('GW_GPS', False)==True):
|
|
|
|
print ("Using real GPS")
|
2017-02-26 17:28:58 +00:00
|
|
|
gateway_conf['gps'] = True
|
|
|
|
gateway_conf['fake_gps'] = False
|
|
|
|
gateway_conf['gps_tty_path'] = os.getenv('GW_GPS_PORT', "/dev/ttyAMA0")
|
|
|
|
# Use fake GPS with coordinates from TTN
|
2017-02-26 18:41:43 +00:00
|
|
|
elif(os.getenv('GW_GPS', False)==False and latitude!=0 and longitude!=0):
|
|
|
|
print ("Using fake GPS")
|
2017-02-26 17:28:58 +00:00
|
|
|
gateway_conf['gps'] = True
|
|
|
|
gateway_conf['fake_gps'] = True
|
|
|
|
gateway_conf['ref_latitude'] = latitude
|
|
|
|
gateway_conf['ref_longitude'] = longitude
|
|
|
|
gateway_conf['ref_altitude'] = altitude
|
|
|
|
# No GPS coordinates
|
|
|
|
else:
|
2017-02-26 18:41:43 +00:00
|
|
|
print ("Not sending coordinates")
|
2017-02-26 17:28:58 +00:00
|
|
|
gateway_conf['gps'] = False
|
|
|
|
gateway_conf['fake_gps'] = False
|
|
|
|
|
|
|
|
|
|
|
|
# Add server configuration
|
|
|
|
gateway_conf['servers'] = []
|
|
|
|
|
|
|
|
# Add TTN server
|
|
|
|
if(os.getenv('SERVER_TTN', True)):
|
|
|
|
server = {}
|
|
|
|
server['serv_type'] = "ttn"
|
|
|
|
server['server_address'] = router
|
|
|
|
server['serv_gw_id'] = os.environ.get("GW_ID")
|
|
|
|
server['serv_gw_key'] = os.environ.get("GW_KEY")
|
|
|
|
server['serv_enabled'] = True
|
|
|
|
gateway_conf['servers'].append(server)
|
|
|
|
|
|
|
|
# Add up to 3 additional servers
|
2017-02-26 18:41:43 +00:00
|
|
|
if(os.getenv('SERVER_1_ENABLED', False)):
|
2017-02-26 17:28:58 +00:00
|
|
|
server = {}
|
|
|
|
if(os.getenv('SERVER_1_TYPE', "semtech")=="ttn"):
|
|
|
|
server['serv_type'] = "ttn"
|
|
|
|
server['server_address'] = os.environ.get("SERVER_1_ADDRESS")
|
2017-02-26 19:28:09 +00:00
|
|
|
server['serv_port_up'] = os.environ.get("SERVER_1_PORTUP")
|
|
|
|
server['serv_port_down'] = os.environ.get("SERVER_1_PORTDOWN")
|
2017-02-26 17:28:58 +00:00
|
|
|
server['serv_gw_id'] = os.environ.get("SERVER_1_GWID")
|
|
|
|
server['serv_gw_key'] = os.environ.get("SERVER_1_GWKEY")
|
2017-02-26 18:41:43 +00:00
|
|
|
if(os.getenv('SERVER_1_ENABLED', "false")=="true"):
|
2017-02-26 17:28:58 +00:00
|
|
|
server['serv_enabled'] = True
|
|
|
|
else:
|
|
|
|
server['serv_enabled'] = False
|
2017-02-26 19:28:09 +00:00
|
|
|
if(os.getenv('SERVER_1_DOWNLINK', "false")=="true"):
|
|
|
|
server['serv_down_enabled'] = True
|
|
|
|
else:
|
|
|
|
server['serv_down_enabled'] = False
|
2017-02-26 17:28:58 +00:00
|
|
|
gateway_conf['servers'].append(server)
|
|
|
|
|
2017-02-26 18:41:43 +00:00
|
|
|
if(os.getenv('SERVER_2_ENABLED', False)):
|
2017-02-26 17:28:58 +00:00
|
|
|
server = {}
|
2017-02-26 19:28:09 +00:00
|
|
|
if(os.getenv('SERVER_2_TYPE', "semtech")=="ttn"):
|
2017-02-26 17:28:58 +00:00
|
|
|
server['serv_type'] = "ttn"
|
2017-02-26 19:28:09 +00:00
|
|
|
server['server_address'] = os.environ.get("SERVER_2_ADDRESS")
|
|
|
|
server['serv_port_up'] = os.environ.get("SERVER_2_PORTUP")
|
|
|
|
server['serv_port_down'] = os.environ.get("SERVER_2_PORTDOWN")
|
|
|
|
server['serv_gw_id'] = os.environ.get("SERVER_2_GWID")
|
|
|
|
server['serv_gw_key'] = os.environ.get("SERVER_2_GWKEY")
|
|
|
|
if(os.getenv('SERVER_2_ENABLED', "false")=="true"):
|
2017-02-26 17:28:58 +00:00
|
|
|
server['serv_enabled'] = True
|
|
|
|
else:
|
|
|
|
server['serv_enabled'] = False
|
2017-02-26 19:28:09 +00:00
|
|
|
if(os.getenv('SERVER_2_DOWNLINK', "false")=="true"):
|
|
|
|
server['serv_down_enabled'] = True
|
|
|
|
else:
|
|
|
|
server['serv_down_enabled'] = False
|
2017-02-26 17:28:58 +00:00
|
|
|
gateway_conf['servers'].append(server)
|
|
|
|
|
2017-02-26 18:41:43 +00:00
|
|
|
if(os.getenv('SERVER_3_ENABLED', False)):
|
2017-02-26 17:28:58 +00:00
|
|
|
server = {}
|
2017-02-26 19:28:09 +00:00
|
|
|
if(os.getenv('SERVER_3_TYPE', "semtech")=="ttn"):
|
2017-02-26 17:28:58 +00:00
|
|
|
server['serv_type'] = "ttn"
|
2017-02-26 19:28:09 +00:00
|
|
|
server['server_address'] = os.environ.get("SERVER_3_ADDRESS")
|
|
|
|
server['serv_port_up'] = os.environ.get("SERVER_3_PORTUP")
|
|
|
|
server['serv_port_down'] = os.environ.get("SERVER_3_PORTDOWN")
|
|
|
|
server['serv_gw_id'] = os.environ.get("SERVER_3_GWID")
|
|
|
|
server['serv_gw_key'] = os.environ.get("SERVER_3_GWKEY")
|
|
|
|
if(os.getenv('SERVER_3_ENABLED', "false")=="true"):
|
2017-02-26 17:28:58 +00:00
|
|
|
server['serv_enabled'] = True
|
|
|
|
else:
|
|
|
|
server['serv_enabled'] = False
|
2017-02-26 19:28:09 +00:00
|
|
|
if(os.getenv('SERVER_3_DOWNLINK', "false")=="true"):
|
|
|
|
server['serv_down_enabled'] = True
|
|
|
|
else:
|
|
|
|
server['serv_down_enabled'] = False
|
|
|
|
|
2017-02-26 17:28:58 +00:00
|
|
|
gateway_conf['servers'].append(server)
|
|
|
|
|
|
|
|
|
|
|
|
# Now write the local_conf out to a file
|
|
|
|
# Write global_coonf
|
|
|
|
local_conf = {'gateway_conf': gateway_conf}
|
|
|
|
with open('local_conf.json', 'w') as the_file:
|
2017-02-26 18:41:43 +00:00
|
|
|
the_file.write(json.dumps(local_conf, indent=4))
|
2017-02-26 17:28:58 +00:00
|
|
|
|
|
|
|
# Endless loop to reset and restart packet forwarder
|
|
|
|
while True:
|
2017-03-04 23:17:50 +00:00
|
|
|
# Reset the gateway board - this only works for the Raspberry Pi.
|
|
|
|
GPIO.setmode(GPIO.BOARD) # hardware pin numbers, just like gpio -1
|
|
|
|
|
|
|
|
if (os.environ.get("GW_RESET_PIN")!=""):
|
|
|
|
try:
|
|
|
|
pin_number = int(os.environ.get("GW_RESET_PIN"))
|
|
|
|
print ("[TTN Gateway]: Resetting concentrator on pin "+os.environ.get("GW_RESET"))
|
|
|
|
GPIO.setup(pin_number, GPIO.OUT, initial=GPIO.LOW)
|
|
|
|
GPIO.output(pin_number, 0)
|
|
|
|
time.sleep(0.1)
|
|
|
|
GPIO.output(pin_number, 1)
|
|
|
|
time.sleep(0.1)
|
|
|
|
GPIO.output(pin_number, 0)
|
|
|
|
time.sleep(0.1)
|
|
|
|
GPIO.input(pin_number)
|
|
|
|
GPIO.cleanup(pin_number)
|
|
|
|
except ValueError:
|
|
|
|
print ("Can't interpret "+os.environ.get("GW_RESET_PIN")+" as a valid pin number.")
|
2017-02-26 17:28:58 +00:00
|
|
|
|
2017-03-04 23:17:50 +00:00
|
|
|
else:
|
|
|
|
print ("[TTN Gateway]: Resetting concentrator on default pin 22.")
|
2017-02-26 17:28:58 +00:00
|
|
|
GPIO.setup(22, GPIO.OUT, initial=GPIO.LOW)
|
|
|
|
GPIO.output(22, 0)
|
|
|
|
time.sleep(0.1)
|
|
|
|
GPIO.output(22, 1)
|
|
|
|
time.sleep(0.1)
|
|
|
|
GPIO.output(22, 0)
|
|
|
|
time.sleep(0.1)
|
2017-03-04 23:17:50 +00:00
|
|
|
GPIO.input(22)
|
2017-02-26 18:41:43 +00:00
|
|
|
GPIO.cleanup(22)
|
2017-02-26 17:28:58 +00:00
|
|
|
|
|
|
|
# Start forwarder
|
|
|
|
subprocess.call(["./mp_pkt_fwd"])
|
2017-02-28 00:16:26 +00:00
|
|
|
time.sleep(15)
|