Skip to content

Commit 413855e

Browse files
committed
Merge branch 'dev' to master for release 1.6.
2 parents a1e2d1c + bfc708d commit 413855e

File tree

306 files changed

+13397
-6994
lines changed

Some content is hidden

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

306 files changed

+13397
-6994
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,7 @@ $RECYCLE.BIN/
107107
*.lnk
108108
/use_this_sdk
109109
*.dSYM
110+
111+
# cmake
112+
build/
113+
tmp/

CHANGES.md

+61
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,67 @@
22
# Revision History #
33

44

5+
## Version 1.6 -- October 2020 ##
6+
7+
8+
### New Build Procedure: ###
9+
10+
11+
- Rather than trying to keep a bunch of different platform specific Makefiles in sync, "cmake" is now used for greater portability and easier maintenance.
12+
13+
- README.md has a quick summary of the process. More details in the ***User Guide***.
14+
15+
16+
### New Features: ###
17+
18+
19+
- "-X" option enables FX.25 transmission. FX.25 reception is always enabled so you don't need to do anything special. "What is FX.25?" you might ask. It is forward error correction (FEC) added in a way that is completely compatible with an ordinary AX.25 frame. See new document ***AX25\_plus\_FEC\_equals\_FX25.pdf*** for details.
20+
21+
- Receive AIS location data from ships. Enable by using "-B AIS" command line option or "MODEM AIS" in the configuration file. AIS NMEA sentences are encapsulated in APRS user-defined data with a "{DA" prefix. This uses 9600 bps so you need to use wide band audio, not what comes out of the speaker. There is also a "-A" option to generate APRS Object Reports.
22+
23+
- Receive Emergency Alert System (EAS) Specific Area Message Encoding (SAME). Enable by using "-B EAS" command line option or "MODEM EAS" in the configuration file. EAS SAME messages are encapsulated in APRS user-defined data with a "{DE" prefix. This uses low speed AFSK so speaker output is fine.
24+
25+
- "-t" option now accepts more values to accommodate inconsistent handling of text color control codes by different terminal emulators. The default, 1, should work with most modern terminal types. If the colors are not right, try "-t 9" to see the result of the different choices and pick the best one. If none of them look right, file a bug report and specify: operating system version (e.g. Raspbian Buster), terminal emulator type and version (e.g. LXTerminal 0.3.2). Include a screen capture.
26+
27+
28+
- "-g" option to force G3RUH mode for lower speeds where a different modem type may be the default.
29+
30+
- 2400 bps compatibility with MFJ-2400. See ***2400-4800-PSK-for-APRS-Packet-Radio.pdf*** for details
31+
32+
- "atest -h" will display the frame in hexadecimal for closer inspection.
33+
34+
- Add support for Multi-GNSS NMEA sentences.
35+
36+
37+
38+
### Bugs Fixed: ###
39+
40+
- Proper counting of frames in transmit queue for AGW protocol 'Y' command.
41+
42+
43+
44+
### New Documentation: ###
45+
46+
- ***AX.25 + FEC = FX.25***
47+
48+
- ***AIS Reception***
49+
50+
- ***AX.25 Throughput: Why is 9600 bps Packet Radio only twice as fast as 1200?***
51+
52+
- [***Ham Radio of Things (HRoT) - IoT over Ham Radio***](https://github.com/wb2osz/hrot)
53+
54+
- [***EAS SAME to APRS Message Converter***](https://github.com/wb2osz/eas2aprs)
55+
56+
- [***Dire Wolf PowerPoint Slide Show***](https://github.com/wb2osz/direwolf-presentation)
57+
58+
### Notes: ###
59+
60+
The Windows binary distribution now uses gcc (MinGW) version 7.4.0.
61+
The Windows version is built for both 32 and 64 bit operating systems.
62+
Use the 64 bit version if possible; it runs considerably faster.
63+
64+
65+
566
## Version 1.5 -- September 2018 ##
667

768

0 commit comments

Comments
 (0)