APRS Pi-Star Beacon

https://forum.pistar.uk/viewtopic.php?t=1724 https://nq4t.com/making-my-hotspots-beacon-aprs-is-w-real-time-connection-data/ (here explains a lot how it works) Worth trying... PS . See bellow another user has tried with another piece of code.... CODE: SELECT ALL #!/bin/bash # load nema sentence from GPS gpsr=$(gpspipe -n 8 -r gpsdaddress:2947|sed -n '/$GPGGA/{p;q}') #GPS Sync Check - if no GPS lock, no run gpss=$(printf "$gpsr" | cut -d ',' -f7) test "$gpss" = "0" && exit #we didn't exit so we can continue gps=$(printf "$gpsr" | cut -b 19-42|sed 's#N,#N\\#g'|sed 's#,##g'|cut -b 1-7,10-19,22) #Define login info user=URCALL password=URPASS #Define object user info senduser=URCALL-SSID #Define comment - DMR ONLY # get DMR TG info, parse it, write it to file #dmr=$(curl -s http://pi-stardmr.local/mmdvmhost/bm_links2.php| sed 's/<[^>]\+>//g' | sed 's/None//g' | sed '...