I thought my previous post was a reply to the one before that. Maybe because I change the subject it made it a new post. Sorry.
?
Here's some configuration files.
?
First certain bits of the rtl_airband.conf file.
?
/*
???Global Settings
*/
# This fft size provides 4 kHz channel spacing - seems to be close enough.
fft_size = 512;
multiple_demod_threads = true;
/*
???Devices
*/
devices: ?
(
???{
???????type = "rtlsdr";
???????index = 0;
???????gain = 35;
???????sample_rate = 2.048;
???????buffers = 10;
???????centerfreq = 145.0;
???????correction = 0;
???????mode = "multichannel";
???????channels:
???????(
{
???????????????# 1. APRS UDP for Direwolf
???????????????freq = 144.39;
???????????????modulation = "nfm";
???????????????# afc = 0;
???????????????# lowpass = 3000;
???????????????# highpass = 300;
???????????????outputs:
???????????????(
???????????????????{
???????????????????????type = "udp_stream";
???????????????????????dest_address = "127.0.0.1";
???????????????????????# Dest port is audio translator for Direwolf int16.
???????????????????????dest_port = 7355;
???????????????????????continuous = true;
???????????????????}
???????????????);
???????????},
???????????{
???????????????# 2. ISS APRS UDP for Direwolf
???????????????freq = 145.825;
???????????????modulation = "nfm";
???????????????# afc = 0;
???????????????# lowpass = 3000;
???????????????# highpass = 300;
???????????????outputs:
???????????????(
???????????????????{
???????????????????????type = "udp_stream";
???????????????????????dest_address = "127.0.0.1";
???????????????????????# Dest port is audio translator for Direwolf int16.
???????????????????????dest_port = 7356;
???????????????????????continuous = true;
???????????????????}
???????????????);
???????????}
???????);
???}
);
================================================================================
?
2. configuration file for Direwolf (aprs.conf). IGATE credentials have been hidden.
?
# Receive audio stream from stdin at 16kbps on a single channel.
ADEVICE0 udp:7455 default
ARATE 16000
ACHANNELS 1
ADEVICE1 udp:7456 default
ARATE 16000
ACHANNELS 1
# Log to a data directory
LOGDIR /home/dragnet/direwolf_log
# Set up a single decoder channel, specifying call sign, 1200 bps data rate with DTMF decoding.
CHANNEL 0
MYCALL VE3NRT-1
MODEM 1200
DTMF
CHANNEL 2
MYCALL VE3NRT-1
MODEM 1200
DTMF
# Set up ports for other applications
# Moved from 8000/8001 to 8800/8801 to make room for Gunicorn Django Dragnet
AGWPORT ?8800 ?
KISSPORT 8801
# Connect to IGATE to report on what is heard and let them know where we are.
IGSERVER noam.aprs2.net
IGLOGIN
PBEACON sendto=IG delay=0:30 every=60:00 symbol="igate" overlay=R lat=43.998248N long=079.494796W
?
?