Skip to content

Commit 8e28902

Browse files
committed
Notes for future.
1 parent 04ecdbc commit 8e28902

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

src/decode_aprs.c

+62
Original file line numberDiff line numberDiff line change
@@ -858,6 +858,32 @@ static void aprs_ll_pos (decode_aprs_t *A, unsigned char *info, int ilen)
858858

859859
strlcpy (A->g_data_type_desc, "Weather Report", sizeof(A->g_data_type_desc));
860860
weather_data (A, p->comment, TRUE);
861+
/*
862+
Here is an interesting case.
863+
The protocol spec states that a position report with symbol _ is a special case
864+
and the information part must contain wxnow.txt format weather data.
865+
But, here we see it being generated like a normal position report.
866+
867+
N8VIM>BEACON,AB1OC-10*,WIDE2-1:!4240.85N/07133.99W_PHG72604/ Pepperell, MA. WX. 442.9+ PL100<0x0d>
868+
Didn't find wind direction in form c999.
869+
Didn't find wind speed in form s999.
870+
Didn't find wind gust in form g999.
871+
Didn't find temperature in form t999.
872+
Weather Report, WEATHER Station (blue)
873+
N 42 40.8500, W 071 33.9900
874+
, "PHG72604/ Pepperell, MA. WX. 442.9+ PL100"
875+
876+
It seems, to me, that this is a violation of the protocol spec.
877+
Then, immediately following, we have a positionless weather report in Ultimeter format.
878+
879+
N8VIM>APN391,AB1OC-10*,WIDE2-1:$ULTW006F00CA01421C52275800008A00000102FA000F04A6000B002A<0x0d><0x0a>
880+
Ultimeter, Kantronics KPC-3 rom versions
881+
wind 6.9 mph, direction 284, temperature 32.2, barometer 29.75, humidity 76
882+
883+
aprs.fi merges these two together. Is that anywhere in the protocol spec or
884+
just a heuristic added after noticing a pair of packets like this?
885+
*/
886+
861887
}
862888
else {
863889
/* Regular position report. */
@@ -2372,6 +2398,20 @@ static void aprs_status_report (decode_aprs_t *A, char *info, int ilen)
23722398
*
23732399
*------------------------------------------------------------------*/
23742400

2401+
/*
2402+
https://groups.io/g/direwolf/topic/95961245#7357
2403+
2404+
What APRS queries should DireWolf respond to? Well, it should be configurable whether it responds to queries at all, in case some other application is using DireWolf as a dumb TNC (KISS or AGWPE style) and wants to handle the queries itself.
2405+
2406+
Assuming query responding is enabled, the following broadcast queries should be supported (if the corresponding data is configured in DireWolf):
2407+
2408+
?APRS (I am an APRS station)
2409+
?IGATE (I am operating as a I-gate)
2410+
?WX (I am providing local weather data in my beacon)
2411+
2412+
*/
2413+
2414+
23752415
static void aprs_general_query (decode_aprs_t *A, char *info, int ilen, int quiet)
23762416
{
23772417
char *q2;
@@ -2524,6 +2564,28 @@ static void aprs_general_query (decode_aprs_t *A, char *info, int ilen, int quie
25242564
*
25252565
*------------------------------------------------------------------*/
25262566

2567+
/*
2568+
https://groups.io/g/direwolf/topic/95961245#7357
2569+
2570+
The following directed queries (sent as bodies of APRS text messages) would also be useful (if corresponding data configured):
2571+
2572+
?APRSP (force my current beacon)
2573+
?APRST and ?PING (trace my path to requestor)
2574+
?APRSD (all stations directly heard [no digipeat hops] by local station)
2575+
?APRSO (any Objects/Items originated by this station)
2576+
?APRSH (how often or how many times the specified 3rd station was heard by the queried station)
2577+
?APRSS (immediately send the Status message if configured) (can DireWolf do Status messages?)
2578+
2579+
Lynn KJ4ERJ and I have implemented a non-standard query which might be useful:
2580+
2581+
?VER (send the human-readable software version of the queried station)
2582+
2583+
Hope this is useful. It's just my $.02.
2584+
2585+
Andrew, KA2DDO
2586+
author of YAAC
2587+
*/
2588+
25272589
static void aprs_directed_station_query (decode_aprs_t *A, char *addressee, char *query, int quiet)
25282590
{
25292591
//char query_type[20]; /* Does the query type always need to be exactly 5 characters? */

0 commit comments

Comments
 (0)