Benutzer-Werkzeuge

Webseiten-Werkzeuge


mmdvm

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
Nächste Überarbeitung Beide Seiten der Revision
mmdvm [2018/07/12 15:13]
dh3wr ToDo unerledigt: Just these? Why list them again?
mmdvm [2018/11/15 17:20]
dg9vh [Troubleshooting]
Zeile 17: Zeile 17:
   * [[skyperdescription|Skyper]]   * [[skyperdescription|Skyper]]
   * [[alphapocdescription|AlphaPoc 602R X4]] (z.Z. ausverkauft) - TPL Birdy   * [[alphapocdescription|AlphaPoc 602R X4]] (z.Z. ausverkauft) - TPL Birdy
-<​todo>​Just these? Why list them again?</​todo>​+ 
 ====== How to set up Pi* for PROCSAC (DAPNET) with MMDVM_HS_HAT or MMDVM_DUAL_HAT ====== ====== How to set up Pi* for PROCSAC (DAPNET) with MMDVM_HS_HAT or MMDVM_DUAL_HAT ======
  
Zeile 101: Zeile 102:
   * Radio Frequency POCSAG – Enter the POCSAG radio frequency. Per Andy Taylor in the Pi-Star User Forum : "If we get good buy in from repeater keepers, we could have a really good paging network with great coverage, especially if we all use the same standard frequency."​ In Germany, where are already a lot of repeaters we use 439.987.500MHz,​ which will be the deafault entry in Pi*!   * Radio Frequency POCSAG – Enter the POCSAG radio frequency. Per Andy Taylor in the Pi-Star User Forum : "If we get good buy in from repeater keepers, we could have a really good paging network with great coverage, especially if we all use the same standard frequency."​ In Germany, where are already a lot of repeaters we use 439.987.500MHz,​ which will be the deafault entry in Pi*!
   * DAPNET AuthKey – Enter your authorization key for the Decentralized Amateur Paging Network. Which you got by Mail after [[procedurenewtx|you registered a New Transmitter]] as I told you on the Beginning of Configure Pi-Star and enable DAPNET   * DAPNET AuthKey – Enter your authorization key for the Decentralized Amateur Paging Network. Which you got by Mail after [[procedurenewtx|you registered a New Transmitter]] as I told you on the Beginning of Configure Pi-Star and enable DAPNET
 +  * POCSAG Whitelist - This is a white list filter. You can enter RICs separated by a comma. Only calls to those RICs will be transmitted on the air. You can for example enter your own RIC here to only transmit calls to yourself. Beware that group calls, time sync messages and the like will be suppressed if you do not enter the corresponding RICs here as well.
  
 ===== No Pi-Star installed yet: ===== ===== No Pi-Star installed yet: =====
Zeile 109: Zeile 111:
  
 73, DO6DAD 73, DO6DAD
 +
 +===== Troubleshooting =====
 +
 +Sometimes the DAPNETGateway-service got stuck when loosing internet-connection. This results in an error-state on the status-page of the transmitter at hampager.de. Unfortunately the service would be still running but not reconnecting.
 +
 +If you would like to implement a watchdog that restarts the service, if the transmitter goes into error-state you could use following script, that could be called every 5 minutes for example by crontab:
 +
 +
 +        #!/bin/bash
 +        RETVAL=$(curl -u <​username>:<​password>​ https://​www.hampager.de/​api/​transmitters/<​yourtransmittercallsign>​ | egrep -h "​OFFLINE|ERROR"​ | wc -c)
 +        if [ "​$RETVAL"​ -gt 0 ]; then
 +                sudo systemctl stop dapnetgateway.service > /dev/null 2>&1
 +                echo restarting dapnetgateway
 +                sleep 5
 +                sudo systemctl start dapnetgateway.service > /dev/null 2>&1
 +        fi
 +
 +Remember to switch the sd-card to read-write-access with ''​rpi-rw''​ before creating the file in your home-directory. Also remind to make it executable with ''​chmod +x yourscriptname.sh''​
mmdvm.txt · Zuletzt geändert: 2023/02/24 17:35 von do1goe