Como hacer que el Echolink/Raspberry salga por radio
Hasta el momento la Raspberry se utiliza como server de Echolink pero es esta pagina usted vera como agregar un equipo RF (Un HT o Base) al sistema.
Lo primero que hay que hacer es este circuito
Arreglado para equipo base y handy
Y luego realizar estos cambios en el software de la Raspberry
Habrir la terminal y ingresar:
sudo nano /etc/rc.local
Archivo rc.local y las lineas en amarillo son la aregladas:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
# Print the IP address
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
printf "My IP address is %s\n" "$_IP"
fi
#Enable the pin for PTT GPIO:
echo "17" > /sys/class/gpio/export
echo out > /sys/class/gpio/gpio17/direction
#Make sure that the svxlink user can write to the GPIO pin:
chmod 0777 /sys/class/gpio/gpio17/value
#COS:
echo "3" > /sys/class/gpio/export
echo in > /sys/class/gpio/gpio3/direction
echo 1 > /sys/class/gpio/gpio3/active_low
exit 0
Ademas segun tengo entendido hay que pone resto en sudo nano /etc/svxlink/svxlink.conf
[Rx1]
SQL_DET=GPIO
GPIO_SQL_PIN=gpio3
[Tx1]
SQL_DET=GPIO
GPIO_SQL_PIN=gpio17