Skip to content

Commit 0dc7cba

Browse files
committed
AIS reception.
1 parent 65d8d26 commit 0dc7cba

15 files changed

+648
-44
lines changed

CHANGES.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,15 @@
1010

1111
- Rather than trying to keep a bunch of different platform specific Makefiles in sync, "cmake" is now used for greater portability and easier maintenance.
1212

13-
13+
- README.md has a quick summary of the process. More details in the User Guide.
1414

1515

1616
### New Features: ###
1717

1818

19-
- "-X" option enables FX.25 transmission. FX.25 reception is always enabled so you don't need to do anything special.
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.
2022

2123
- "-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.
2224

src/CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ endif()
2020
# direwolf
2121
list(APPEND direwolf_SOURCES
2222
direwolf.c
23+
ais.c
2324
aprs_tt.c
2425
audio_stats.c
2526
ax25_link.c
@@ -49,6 +50,7 @@ list(APPEND direwolf_SOURCES
4950
fx25_init.c
5051
fx25_rec.c
5152
fx25_send.c
53+
fx25_auto.c
5254
gen_tone.c
5355
hdlc_rec.c
5456
hdlc_rec2.c
@@ -136,6 +138,7 @@ endif()
136138
# decode_aprs
137139
list(APPEND decode_aprs_SOURCES
138140
decode_aprs.c
141+
ais.c
139142
kiss_frame.c
140143
ax25_pad.c
141144
dwgpsnmea.c
@@ -287,6 +290,7 @@ target_link_libraries(gen_packets
287290
# atest
288291
list(APPEND atest_SOURCES
289292
atest.c
293+
ais.c
290294
demod.c
291295
demod_afsk.c
292296
demod_psk.c

0 commit comments

Comments
 (0)