README CTONE SCRIPT THAT WORKS WITH RASPBERRY PI DEBIAN NODE # Usage: Run from repeater as a background process to play courtesy tone # during an active IRLP or EchoIRLP connection. As configured, # it should play a short two tones after the remote connection unkeys. # It is not configured to play tones after local transmissions, but # could be modified to do so. # If you add it to rc.local, be sure to kill it before starting so # only one copy is running. ######### ADD TO RC.IRLP ###################################### killall ctone /bin/su - -c "$CUSTOM/ctone" repeater &>/dev/null & ############################################################# MODIFY THE CTONE SCRIPT IN /HOME/IRLP/CUSTOM THE FOLLOWING LINE elsif ( -f "$AUDIO/custom/confirm.wav" ) { system("$BIN/play","$AUDIO/custom/4up.wav"); BESURE AUDIO/CUSTOM HAS THE WAV FILE CONFIRM.WAV IN IT. YOU CAN ADD ADDITIONAL TONES AND MODIFY THIS FILE TO YOUR NEEDS. I AM USING 4UP IN THIS EXAMPLE CUSTOM_DECODE FILE TO ENABLE OR DISABLE THE CTONE SCRIPT ####################### CTONE ON/OFF ############################### # Toggle enable/disable connect tone. if [ "$1" = "P9P" ] ; then "$CUSTOM"/ctone_on_off ; fi #################################################################### ALSO MAKE SURE PERMISSIONS ARE SET FOR USER AND OWNER REPEATER CHMOD 750