Skip to content

Commit e108147

Browse files
committed
Fix ttgrid corner and various cleanups.
1 parent 4f6ca0d commit e108147

14 files changed

+270
-92
lines changed

src/aprs_tt.c

+17-3
Original file line numberDiff line numberDiff line change
@@ -1283,13 +1283,26 @@ static int parse_location (char *e)
12831283

12841284
lat0 = tt_config.ttloc_ptr[ipat].grid.lat0;
12851285
lat9 = tt_config.ttloc_ptr[ipat].grid.lat9;
1286+
double yrange = lat9 - lat0;
12861287
y = atof(ystr);
1287-
m_latitude = lat0 + y * (lat9-lat0) / (pow(10., strlen(ystr)) - 1.);
1288-
1288+
double user_y_max = round(pow(10., strlen(ystr)) - 1.); // e.g. 999 for 3 digits
1289+
m_latitude = lat0 + yrange * y / user_y_max;
1290+
#if 0
1291+
dw_printf ("TTLOC_GRID LAT min=%f, max=%f, range=%f\n", lat0, lat9, yrange);
1292+
dw_printf ("TTLOC_GRID LAT user_y=%f, user_y_max=%f\n", y, user_y_max);
1293+
dw_printf ("TTLOC_GRID LAT min + yrange * user_y / user_y_range = %f\n", m_latitude);
1294+
#endif
12891295
lon0 = tt_config.ttloc_ptr[ipat].grid.lon0;
12901296
lon9 = tt_config.ttloc_ptr[ipat].grid.lon9;
1297+
double xrange = lon9 - lon0;
12911298
x = atof(xstr);
1292-
m_longitude = lon0 + x * (lon9-lon0) / (pow(10., strlen(xstr)) - 1.);
1299+
double user_x_max = round(pow(10., strlen(xstr)) - 1.);
1300+
m_longitude = lon0 + xrange * x / user_x_max;
1301+
#if 0
1302+
dw_printf ("TTLOC_GRID LON min=%f, max=%f, range=%f\n", lon0, lon9, xrange);
1303+
dw_printf ("TTLOC_GRID LON user_x=%f, user_x_max=%f\n", x, user_x_max);
1304+
dw_printf ("TTLOC_GRID LON min + xrange * user_x / user_x_range = %f\n", m_longitude);
1305+
#endif
12931306

12941307
m_dao[2] = e[0];
12951308
m_dao[3] = e[1];
@@ -1972,6 +1985,7 @@ static const struct {
19721985
/* Latitude comes out ok, 37.9137 -> 55.82 min. */
19731986
/* Longitude -81.1254 -> 8.20 min */
19741987
{ "B21234*A67979#", "679", "12", "7A", "", "", "12.3400", "56.1200", "!TB2!" },
1988+
19751989
{ "B533686*A67979#", "679", "12", "7A", "", "", "37.9222", "81.1143", "!TB5!" },
19761990

19771991
// TODO: should test other coordinate systems.

src/atest.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ void dlq_rec_frame (int chan, int subchan, int slice, packet_t pp, alevel_t alev
886886

887887
decode_aprs_t A;
888888

889-
decode_aprs (&A, pp, 0);
889+
decode_aprs (&A, pp, 0, 0);
890890

891891
// Temp experiment to see how different systems set the RR bits in the source and destination.
892892
// log_rr_bits (&A, pp);

src/ax25_pad.c

+5-2
Original file line numberDiff line numberDiff line change
@@ -350,8 +350,9 @@ void ax25_delete (packet_t this_p)
350350
* strict - True to enforce rules for packets sent over the air.
351351
* False to be more lenient for packets from IGate server.
352352
*
353-
* Messages from an IGate server can have longer
354-
* addresses after qAC. Up to 9 observed so far.
353+
* Packets from an IGate server can have longer
354+
* addresses after qAC. Up to 9 observed so far.
355+
* The SSID can be 2 alphanumeric characters, not just 1 to 15.
355356
*
356357
* We can just truncate the name because we will only
357358
* end up discarding it. TODO: check on this.
@@ -740,6 +741,7 @@ packet_t ax25_dup (packet_t copy_from)
740741
* alphanumeric characters for the SSID.
741742
* We also get messages like this from a server.
742743
* KB1POR>APU25N,TCPIP*,qAC,T2NUENGLD:...
744+
* K1BOS-B>APOSB,TCPIP,WR2X-2*:...
743745
*
744746
* 2 (extra true) will complain if * is found at end.
745747
*
@@ -1983,6 +1985,7 @@ void ax25_format_addrs (packet_t this_p, char *result)
19831985
}
19841986

19851987
ax25_get_addr_with_ssid (this_p, AX25_SOURCE, stemp);
1988+
// FIXME: For ALL strcat: Pass in sizeof result and use strlcat.
19861989
strcat (result, stemp);
19871990
strcat (result, ">");
19881991

src/config.c

+12-10
Original file line numberDiff line numberDiff line change
@@ -2397,10 +2397,9 @@ void config_init (char *fname, struct audio_s *p_audio_config,
23972397
*/
23982398

23992399
/*
2400-
* DIGIPEAT from-chan to-chan alias-pattern wide-pattern [ OFF|DROP|MARK|TRACE | NOID=alias ]
2400+
* DIGIPEAT from-chan to-chan alias-pattern wide-pattern [ OFF|DROP|MARK|TRACE | ATGP=alias ]
24012401
*
2402-
* NOID is an ugly hack for the specific need of ATGP which needs more that 8 digipeaters.
2403-
* The via path starts out as HOP7-7,HOP7-7 and we do not want tracing so it does not fill up.
2402+
* ATGP is an ugly hack for the specific need of ATGP which needs more that 8 digipeaters.
24042403
* DO NOT put this in the User Guide. On a need to know basis.
24052404
*/
24062405

@@ -2527,8 +2526,8 @@ void config_init (char *fname, struct audio_s *p_audio_config,
25272526
p_digi_config->preempt[from_chan][to_chan] = PREEMPT_TRACE;
25282527
t = split(NULL,0);
25292528
}
2530-
else if (strncasecmp(t, "NOID=", 5) == 0) {
2531-
strlcpy (p_digi_config->noid[from_chan][to_chan], t+5, sizeof(p_digi_config->noid[from_chan][to_chan]));;
2529+
else if (strncasecmp(t, "ATGP=", 5) == 0) {
2530+
strlcpy (p_digi_config->atgp[from_chan][to_chan], t+5, sizeof(p_digi_config->atgp[from_chan][to_chan]));;
25322531
t = split(NULL,0);
25332532
}
25342533
}
@@ -3221,7 +3220,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
32213220
t = split(NULL,0);
32223221
if (t == NULL) {
32233222
text_color_set(DW_COLOR_ERROR);
3224-
dw_printf ("Line %d: Missing latitude for TTGRID command.\n", line);
3223+
dw_printf ("Line %d: Missing minimum latitude for TTGRID command.\n", line);
32253224
continue;
32263225
}
32273226
tl->grid.lat0 = parse_ll(t,LAT,line);
@@ -3231,7 +3230,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
32313230
t = split(NULL,0);
32323231
if (t == NULL) {
32333232
text_color_set(DW_COLOR_ERROR);
3234-
dw_printf ("Line %d: Missing longitude for TTGRID command.\n", line);
3233+
dw_printf ("Line %d: Missing minimum longitude for TTGRID command.\n", line);
32353234
continue;
32363235
}
32373236
tl->grid.lon0 = parse_ll(t,LON,line);
@@ -3241,7 +3240,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
32413240
t = split(NULL,0);
32423241
if (t == NULL) {
32433242
text_color_set(DW_COLOR_ERROR);
3244-
dw_printf ("Line %d: Missing latitude for TTGRID command.\n", line);
3243+
dw_printf ("Line %d: Missing maximum latitude for TTGRID command.\n", line);
32453244
continue;
32463245
}
32473246
tl->grid.lat9 = parse_ll(t,LAT,line);
@@ -3251,13 +3250,16 @@ void config_init (char *fname, struct audio_s *p_audio_config,
32513250
t = split(NULL,0);
32523251
if (t == NULL) {
32533252
text_color_set(DW_COLOR_ERROR);
3254-
dw_printf ("Line %d: Missing longitude for TTGRID command.\n", line);
3253+
dw_printf ("Line %d: Missing maximum longitude for TTGRID command.\n", line);
32553254
continue;
32563255
}
3257-
tl->grid.lon0 = parse_ll(t,LON,line);
3256+
tl->grid.lon9 = parse_ll(t,LON,line);
32583257

32593258
/* temp debugging */
32603259

3260+
// dw_printf ("CONFIG TTGRID min %f %f\n", tl->grid.lat0, tl->grid.lon0);
3261+
// dw_printf ("CONFIG TTGRID max %f %f\n", tl->grid.lat9, tl->grid.lon9);
3262+
32613263
//for (j=0; j<p_tt_config->ttloc_len; j++) {
32623264
// dw_printf ("debug ttloc %d/%d %s\n", j, p_tt_config->ttloc_size,
32633265
// p_tt_config->ttloc_ptr[j].pattern);

0 commit comments

Comments
 (0)