Skip to content

Commit d0fc24a

Browse files
committed
Just comments.
1 parent acace8c commit d0fc24a

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

src/dwgpsd.c

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
// release lib version API Raspberry Pi OS
6464
// 3.22 28 11 bullseye
6565
// 3.23 29 12
66+
// 3.24 14 Not tested yet.
6667

6768
#if GPSD_API_MAJOR_VERSION < 5 || GPSD_API_MAJOR_VERSION > 12
6869
#error libgps API version might be incompatible.

src/encode_aprs.c

+9
Original file line numberDiff line numberDiff line change
@@ -551,6 +551,15 @@ int encode_position (int messaging, int compressed, double lat, double lon, int
551551
int result_len = 0;
552552

553553
if (compressed) {
554+
555+
// Thought:
556+
// https://groups.io/g/direwolf/topic/92718535#6886
557+
// When speed is zero, we could put the altitude in the compressed
558+
// position rather than having /A=999999.
559+
// However, the resolution would be decreased and that could be important
560+
// when hiking in hilly terrain. It would also be confusing to
561+
// flip back and forth between two different representations.
562+
554563
aprs_compressed_pos_t *p = (aprs_compressed_pos_t *)presult;
555564

556565
p->dti = messaging ? '=' : '!';

src/fx25_init.c

+1
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,7 @@ int fx25_pick_mode (int fx_mode, int dlen)
371371
// The PRUG FX.25 TNC has additional modes that will handle larger frames
372372
// by using multiple RS blocks. This is a future possibility but needs
373373
// to be coordinated with other FX.25 developers so we maintain compatibility.
374+
// See https://web.tapr.org/meetings/DCC_2020/JE1WAZ/DCC-2020-PRUG-FINAL.pptx
374375

375376
static const int prefer[6] = { 0x04, 0x03, 0x06, 0x09, 0x05, 0x01 };
376377
for (int k = 0; k < 6; k++) {

0 commit comments

Comments
 (0)