Skip to content

Commit 8978f2d

Browse files
committed
Version 1.0 - Initial commit
Changes to be committed: new file: .gitattributes new file: .gitignore new file: APRStt-Implementation-Notes.pdf new file: CHANGES.txt new file: LICENSE-dire-wolf.txt new file: LICENSE-other.txt new file: Makefile.linux new file: Makefile.win new file: Quick-Start-Guide-Windows.pdf new file: Raspberry-Pi-APRS.pdf new file: User-Guide.pdf new file: aclients.c new file: aprs_tt.c new file: aprs_tt.h new file: atest.c new file: audio.c new file: audio.h new file: audio_win.c new file: ax25_pad.c new file: ax25_pad.h new file: beacon.c new file: beacon.h new file: config.c new file: config.h new file: decode_aprs.c new file: decode_aprs.h new file: dedupe.c new file: dedupe.h new file: demod.c new file: demod.h new file: demod_9600.c new file: demod_9600.h new file: demod_afsk.c new file: demod_afsk.h new file: digipeater.c new file: digipeater.h new file: direwolf.c new file: direwolf.conf new file: direwolf.desktop new file: direwolf.h new file: dsp.c new file: dsp.h new file: dtmf.c new file: dtmf.h new file: dw-icon.ico new file: dw-icon.png new file: dw-icon.rc new file: dw-start.sh new file: dwgps.c new file: dwgps.h new file: encode_aprs.c new file: encode_aprs.h new file: fcs_calc.c new file: fcs_calc.h new file: fsk_demod_agc.h new file: fsk_demod_state.h new file: fsk_filters.h new file: fsk_gen_filter.h new file: gen_packets.c new file: gen_tone.c new file: gen_tone.h new file: hdlc_rec.c new file: hdlc_rec.h new file: hdlc_rec2.c new file: hdlc_rec2.h new file: hdlc_send.c new file: hdlc_send.h new file: igate.c new file: igate.h new file: kiss.c new file: kiss.h new file: kiss_frame.c new file: kiss_frame.h new file: kissnet.c new file: kissnet.h new file: latlong.c new file: latlong.h new file: ll2utm.c new file: misc/README-dire-wolf.txt new file: misc/strcasestr.c new file: misc/strsep.c new file: misc/strtok_r.c new file: morse.c new file: multi_modem.c new file: multi_modem.h new file: ptt.c new file: ptt.h new file: pttest.c new file: rdq.c new file: rdq.h new file: redecode.c new file: redecode.h new file: regex/COPYING new file: regex/INSTALL new file: regex/LICENSES new file: regex/NEWS new file: regex/README new file: regex/README-dire-wolf.txt new file: regex/re_comp.h new file: regex/regcomp.c new file: regex/regex.c new file: regex/regex.h new file: regex/regex_internal.c new file: regex/regex_internal.h new file: regex/regexec.c new file: rrbb.c new file: rrbb.h new file: server.c new file: server.h new file: symbols-new.txt new file: symbols.c new file: symbols.h new file: symbolsX.txt new file: textcolor.c new file: textcolor.h new file: tocalls.txt new file: tq.c new file: tq.h new file: tt_text.c new file: tt_text.h new file: tt_user.c new file: tt_user.h new file: tune.h new file: udp_test.c new file: utm/LatLong-UTMconversion.c new file: utm/LatLong-UTMconversion.h new file: utm/README.txt new file: utm/SwissGrid.cpp new file: utm/UTMConversions.cpp new file: utm/constants.h new file: utm2ll.c new file: version.h new file: xmit.c new file: xmit.h
0 parents  commit 8978f2d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+52486
-0
lines changed

.gitattributes

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
7+
# Standard to msysgit
8+
*.doc diff=astextplain
9+
*.DOC diff=astextplain
10+
*.docx diff=astextplain
11+
*.DOCX diff=astextplain
12+
*.dot diff=astextplain
13+
*.DOT diff=astextplain
14+
*.pdf diff=astextplain
15+
*.PDF diff=astextplain
16+
*.rtf diff=astextplain
17+
*.RTF diff=astextplain

.gitignore

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
# Custom
2+
*.docx
3+
z*
4+
*.log
5+
*bak*
6+
*~
7+
*.xlsx
8+
*.stackdump
9+
10+
# Object files
11+
*.o
12+
*.ko
13+
*.obj
14+
*.elf
15+
16+
# Precompiled Headers
17+
*.gch
18+
*.pch
19+
20+
# Libraries
21+
*.lib
22+
*.a
23+
*.la
24+
*.lo
25+
26+
# Shared objects (inc. Windows DLLs)
27+
*.dll
28+
*.so
29+
*.so.*
30+
*.dylib
31+
32+
# Executables
33+
*.exe
34+
*.out
35+
*.app
36+
*.i*86
37+
*.x86_64
38+
*.hex
39+
40+
# =========================
41+
# Operating System Files
42+
# =========================
43+
44+
# OSX
45+
# =========================
46+
47+
.DS_Store
48+
.AppleDouble
49+
.LSOverride
50+
51+
# Thumbnails
52+
._*
53+
54+
# Files that might appear on external disk
55+
.Spotlight-V100
56+
.Trashes
57+
58+
# Directories potentially created on remote AFP share
59+
.AppleDB
60+
.AppleDesktop
61+
Network Trash Folder
62+
Temporary Items
63+
.apdisk
64+
65+
# Windows
66+
# =========================
67+
68+
# Windows image file caches
69+
Thumbs.db
70+
ehthumbs.db
71+
72+
# Folder config file
73+
Desktop.ini
74+
75+
# Recycle Bin used on file shares
76+
$RECYCLE.BIN/
77+
78+
# Windows Installer files
79+
*.cab
80+
*.msi
81+
*.msm
82+
*.msp
83+
84+
# Windows shortcuts
85+
*.lnk

APRStt-Implementation-Notes.pdf

1010 KB
Binary file not shown.

CHANGES.txt

+167
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,167 @@
1+
----------------
2+
Revision history
3+
----------------
4+
5+
6+
-----------
7+
Version 1.0a May 2014
8+
-----------
9+
10+
* Bug fix:
11+
12+
Beacons sent directly to IGate server had incorrect source address.
13+
14+
15+
16+
-----------
17+
Version 1.0 May 2014
18+
-----------
19+
20+
* New Features:
21+
22+
Received audio can be obtained with a UDP socket or stdin.
23+
This can be used to take audio from software defined radios
24+
such as rtl_fm or gqrx.
25+
26+
9600 baud data rate.
27+
28+
New PBEACON and OBEACON configuration options. Previously
29+
it was necessary to handcraft beacons.
30+
31+
Less CPU power required for 300 baud. This is important
32+
if you want to run a bunch of decoders at the same time
33+
to tolerate off-frequency HF SSB signals.
34+
35+
Improved support for UTF-8 character set.
36+
37+
Improved troubleshooting display for APRStt macros.
38+
39+
40+
41+
-----------
42+
Version 0.9 November 2013
43+
-----------
44+
45+
* New Features:
46+
47+
Selection of non-default audio device for Linux ALSA.
48+
49+
Simplified audio device set up for Raspberry Pi.
50+
51+
GPIO lines can be used for PTT on suitable Linux systems.
52+
53+
Improved 1200 baud decoder.
54+
55+
Multiple decoders per channel to tolerate HF SSB signals off frequency.
56+
57+
Command line option "-t 0" to disable text colors.
58+
59+
APRStt macros which allow short numeric only touch tone
60+
sequences to be processed as much longer predefined sequences.
61+
62+
63+
64+
* Bugs Fixed:
65+
66+
Now works on 64 bit target.
67+
68+
69+
70+
* New Restriction for Windows version:
71+
72+
Minimum processor is now Pentium 3 or equivalent or later.
73+
It's possible to run on something older but you will need
74+
to rebuild it from source.
75+
76+
77+
78+
79+
-----------
80+
Version 0.8 August 2013
81+
-----------
82+
83+
* New Features:
84+
85+
Internet Gateway (IGate) including IPv6 support.
86+
87+
Compatibility with YAAC.
88+
89+
Preemptive digipeating option.
90+
91+
KISS TNC should now work with connected AX.25 protocols
92+
(e.g. AX25 for Linux), not just APRS.
93+
94+
95+
96+
-----------
97+
Version 0.7 March 2013
98+
-----------
99+
100+
* New Features:
101+
102+
Added APRStt gateway capability. For details, see:
103+
104+
APRStt-Implementation-Notes.pdf
105+
106+
107+
108+
109+
-----------
110+
Version 0.6
111+
-----------
112+
113+
114+
* New Features:
115+
116+
Improved performance of AFSK demodulator.
117+
Now decodes 965 frames from Track 2 of WA8LMF�s TNC Test CD.
118+
119+
KISS protocol now available thru a TCP socket.
120+
Default port is 8001.
121+
Change it with KISSPORT option in configuration file.
122+
123+
Ability to salvage frames with bad FCS.
124+
See section mentioning "bad apple" in the user guide.
125+
Default of fixing 1 bit works well.
126+
Fixing more bits not recommended because there is a high
127+
probability of occasional corrupted data getting thru.
128+
129+
Added AGW "monitor" format messages.
130+
Now compatible with APRS-TW for telemetry.
131+
132+
133+
* Bugs Fixed:
134+
135+
None.
136+
137+
138+
139+
* Known Problem:
140+
141+
The Linux (but not Cygwin) version eventually hangs if nothing is
142+
reading from the KISS pseudo terminal. Some operating system
143+
queue fills up, the application write blocks, and decoding stops.
144+
145+
146+
* Workaround:
147+
148+
If another application is not using the serial KISS interface,
149+
run this in another window:
150+
151+
tail -f /tmp/kisstnc
152+
153+
154+
-----------
155+
Version 0.5
156+
-----------
157+
158+
159+
More error checking and messages for invalid APRS data.
160+
161+
162+
-----------
163+
Version 0.4
164+
-----------
165+
166+
First general availability.
167+

0 commit comments

Comments
 (0)