We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 201295d commit e866446Copy full SHA for e866446
src/aprs-wx.c
@@ -277,7 +277,7 @@ printAPRSPacket (APRSPacket* restrict const p, char* restrict const ret,
277
snprintf_verify(snprintf(
278
result, 48,
279
/* header_________ timestamp____siLNLEscWDWST*/
280
- "%s>APRSWX,TCPIP*:@%.2d%.2d%.2dz%c%s%s%c%c%cC",
+ "%s>APRS,TCPIP*:@%.2d%.2d%.2dz%c%s%s%c%c%cC",
281
p->callsign, now->tm_mday, now->tm_hour, now->tm_min, p->icon[0],
282
p->latitude, p->longitude, p->icon[1], p->windDirection[0], p->windSpeed[0]
283
));
@@ -286,7 +286,7 @@ printAPRSPacket (APRSPacket* restrict const p, char* restrict const ret,
286
287
result, 61,
288
/* header_________ timestamp____LNsiLEscWD/WS*/
289
- "%s>APRSWX,TCPIP*:@%.2d%.2d%.2dz%s%c%s%c%s/%s",
+ "%s>APRS,TCPIP*:@%.2d%.2d%.2dz%s%c%s%c%s/%s",
290
p->callsign, now->tm_mday, now->tm_hour, now->tm_min, p->latitude,
291
p->icon[0], p->longitude, p->icon[1], p->windDirection, p->windSpeed
292
0 commit comments