mirror of https://github.com/wb2osz/direwolf.git
Add a comment about bundling multiple frames in single transmission.
This commit is contained in:
parent
b66c21d39b
commit
1b3ed76584
|
@ -597,6 +597,11 @@ static void * xmit_thread (void *arg)
|
||||||
|
|
||||||
case FLAVOR_APRS_DIGI:
|
case FLAVOR_APRS_DIGI:
|
||||||
xmit_ax25_frames (chan, prio, pp, 1); /* 1 means don't bundle */
|
xmit_ax25_frames (chan, prio, pp, 1); /* 1 means don't bundle */
|
||||||
|
// I don't know if this in some official specification
|
||||||
|
// somewhere, but it is generally agreed that APRS digipeaters
|
||||||
|
// should send only one frame at a time rather than
|
||||||
|
// bunding multiple frames into a single transmission.
|
||||||
|
// Discussion here: http://lists.tapr.org/pipermail/aprssig_lists.tapr.org/2021-September/049034.html
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case FLAVOR_APRS_NEW:
|
case FLAVOR_APRS_NEW:
|
||||||
|
|
Loading…
Reference in New Issue