Skip to content

Commit 60fe31c

Browse files
committed
Documentation updates.
1 parent 9d2fbdd commit 60fe31c

File tree

3 files changed

+46
-19
lines changed

3 files changed

+46
-19
lines changed

CHANGES.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
# Revision History #
33

44

5-
## Version 1.4 -- Beta Test-- April 2017 ##
5+
## Version 1.4 -- April 2017 ##
66

7-
**This is beta test quality. If no significant issues are reported this will be the version 1.4 release.**
87

9-
### New Features (since 1.3): ###
8+
### New Features: ###
109

1110
- AX.25 v2.2 connected mode. See chapter 10 of User Guide for details.
1211

@@ -29,6 +28,7 @@
2928
- $PMGNWPL - Magellan, more complete for stationary objects.
3029
- $PKWDWPL - Kenwood with APRS style symbol but missing comment.
3130

31+
3232
- DTMF tones can be sent by putting "DTMF" in the destination address, similar to the way that Morse Code is sent.
3333

3434
- Take advantage of new 'gpio' group and new /sys/class/gpio ownership in Raspbian Jessie.
@@ -39,7 +39,7 @@
3939

4040

4141

42-
### Bugs Fixed (since 1.3): ###
42+
### Bugs Fixed: ###
4343

4444
- The transmitter (PTT control) was being turned off too soon when sending Morse Code.
4545

README.md

+42-15
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@
33

44
### Decoded Information from Radio Emissions for Windows Or Linux Fans ###
55

6-
In the early days of Amateur Packet Radio, it was necessary to use a “Terminal Node Controller” (TNC) with specialized hardware. Those days are gone. You can now get better results at lower cost by connecting your radio to the “soundcard” interface of a computer and using software to decode the signals.
6+
In the early days of Amateur Packet Radio, it was necessary to use an expensive “Terminal Node Controller” (TNC) with specialized hardware. Those days are gone. You can now get better results at lower cost by connecting your radio to the “soundcard” interface of a computer and using software to decode the signals.
77

88
Dire Wolf is a software "soundcard" modem/TNC and [APRS](http://www.aprs.org/) encoder/decoder. It can be used stand-alone to observe APRS traffic, as a digipeater, [APRStt](http://www.aprs.org/aprstt.html) gateway, or Internet Gateway (IGate). It can also be used as a virtual TNC for other applications such as [APRSIS32](http://aprsisce.wikidot.com/), [UI-View32](http://www.ui-view.net/), [Xastir](http://xastir.org/index.php/Main_Page), [APRS-TW](http://aprstw.blandranch.net/), [YAAC](http://www.ka2ddo.org/ka2ddo/YAAC.html), [UISS](http://users.belgacom.net/hamradio/uiss.htm), [Linux AX25](http://www.linux-ax25.org/wiki/Main_Page), [SARTrack](http://www.sartrack.co.nz/index.html), [RMS Express](http://www.winlink.org/RMSExpress), [BPQ32](http://www.cantab.net/users/john.wiseman/Documents/BPQ32.html), [Outpost PM](http://www.outpostpm.org/) and many others.
99

1010

11-
## Features ##
11+
## Features & Benefits ##
1212

1313
- Lower cost, higher performance alternative to hardware TNC.
1414
Decodes more than 1000 error-free frames from [WA8LMF TNC Test CD](http://wa8lmf.net/TNCtest/).
1515

1616
- Ideal for building a Raspberry Pi digipeater & IGate.
1717

18-
- Data rates: 300 AFSK, 1200 AFSK, 2400 QPSK, 4800 8PSK, and 9600/19200/38400 K9NG/G3RUH.
18+
- Data rates: 300 AFSK, 1200 AFSK, 2400 QPSK, 4800 8PSK, and 9600/19200/38400 bps K9NG/G3RUH.
1919

2020
- Interface with applications by
2121
- [AGW](http://uz7.ho.ua/includes/agwpeapi.htm) network protocol
2222
- [KISS](http://www.ax25.net/kiss.aspx) serial port
23-
- [KISS](http://www.ax25.net/kiss.aspx) network protocol
23+
- [KISS](http://www.ax25.net/kiss.aspx) TCP network protocol
2424

2525
- Decoding of received information for troubleshooting.
2626

@@ -48,9 +48,16 @@ Decodes more than 1000 error-free frames from [WA8LMF TNC Test CD](http://wa8lmf
4848

4949
- Runs in 3 different environments:
5050
- Microsoft Windows XP or later
51-
- Linux, regular PC or single board computer such as Raspberry Pi, BeagleBone Black, or cubieboard 2
51+
- Linux, regular PC/laptop or single board computer such as Raspberry Pi, BeagleBone Black, cubieboard 2, or C.H.I.P.
5252
- Mac OS X
53-
53+
54+
## Documentation ##
55+
56+
[Stable Version](https://github.com/wb2osz/direwolf/tree/master/doc)
57+
58+
[Latest Development Version](https://github.com/wb2osz/direwolf/tree/dev/doc)
59+
60+
5461
## Installation ##
5562

5663
### Windows ###
@@ -60,28 +67,48 @@ Go to the [**releases** page](https://github.com/wb2osz/direwolf/releases). Do
6067
For more details see the **User Guide** in the [**doc** directory](https://github.com/wb2osz/direwolf/tree/master/doc).
6168

6269

63-
### Linux - Download with web browser ###
6470

65-
Go to the [releases page](https://github.com/wb2osz/direwolf/releases). Chose desired release and download the source as zip or compressed tar file. Unpack the files, with "unzip" or "tar xfz," and then:
6671

67-
cd direwolf-*
72+
### Linux - Using git clone (recommended) ###
73+
74+
cd ~
75+
git clone https://www.github.com/wb2osz/direwolf
76+
cd direwolf
6877
make
6978
sudo make install
7079
make install-conf
7180

81+
This should give you the most recent stable release. If you want the latest (possibly unstable) development version, use "git checkout dev" before the first "make" command.
82+
7283
For more details see the **User Guide** in the [**doc** directory](https://github.com/wb2osz/direwolf/tree/master/doc). Special considerations for the Raspberry Pi are found in **Raspberry-Pi-APRS.pdf**
7384

74-
### Linux - Using git clone ###
7585

76-
cd ~
77-
git clone https://www.github.com/wb2osz/direwolf
78-
cd direwolf
86+
### Linux - Using apt-get (Debian flavor operating systems) ###
87+
88+
Results will vary depending on your hardware platform and operating system version because it depends on various volunteers who perform the packaging.
89+
90+
sudo apt-get update
91+
apt-cache showpkg direwolf
92+
sudo apt-get install direwolf
93+
94+
95+
### Linux - Using yum (Red Hat flavor operating systems) ###
96+
97+
Results will vary depending on your hardware platform and operating system version because it depends on various volunteers who perform the packaging.
98+
99+
sudo yum check-update
100+
sudo yum list direwolf
101+
sudo yum install direwolf
102+
103+
### Linux - Download source in tar or zip file ###
104+
105+
Go to the [releases page](https://github.com/wb2osz/direwolf/releases). Chose desired release and download the source as zip or compressed tar file. Unpack the files, with "unzip" or "tar xfz," and then:
106+
107+
cd direwolf-*
79108
make
80109
sudo make install
81110
make install-conf
82111

83-
This should give you the most recent stable release. If you want the latest (unstable) development version, use "git checkout dev" instead before the first "make" command.
84-
85112
For more details see the **User Guide** in the [**doc** directory](https://github.com/wb2osz/direwolf/tree/master/doc). Special considerations for the Raspberry Pi are found in **Raspberry-Pi-APRS.pdf**
86113

87114
## Join the conversation ##

doc/Raspberry-Pi-APRS.pdf

142 KB
Binary file not shown.

0 commit comments

Comments
 (0)