Skip to content

Commit dbb4777

Browse files
committed
More comments.
1 parent cac83f2 commit dbb4777

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

src/digipeater.c

+30-3
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,34 @@ void digipeater (int from_chan, packet_t pp)
164164
/*
165165
* First pass: Look at packets being digipeated to same channel.
166166
*
167-
* We want these to get out quickly.
167+
* We want these to get out quickly, bypassing the usual random wait time.
168+
*
169+
* Some may disagree but I followed what WB4APR had to say about it.
170+
*
171+
* http://www.aprs.org/balloons.html
172+
*
173+
* APRS NETWORK FRATRICIDE: Generally, all APRS digipeaters are supposed to transmit
174+
* immediately and all at the same time. They should NOT wait long enough for each
175+
* one to QRM the channel with the same copy of each packet. NO, APRS digipeaters
176+
* are all supposed to STEP ON EACH OTHER with every packet. This makes sure that
177+
* everyone in range of a digi will hear one and only one copy of each packet.
178+
* and that the packet will digipeat OUTWARD and not backward. The goal is that a
179+
* digipeated packet is cleared out of the local area in ONE packet time and not
180+
* N packet times for every N digipeaters that heard the packet. This means no
181+
* PERSIST times, no DWAIT times and no UIDWAIT times. Notice, this is contrary
182+
* to other packet systems that might want to guarantee delivery (but at the
183+
* expense of throughput). APRS wants to clear the channel quickly to maximize throughput.
184+
*
185+
* http://www.aprs.org/kpc3/kpc3+WIDEn.txt
186+
*
187+
* THIRD: Eliminate the settings that are detrimental to the network.
188+
*
189+
* * UIDWAIT should be OFF. (the default). With it on, your digi is not doing the
190+
* fundamental APRS fratricide that is the primary mechanism for minimizing channel
191+
* loading. All digis that hear the same packet are supposed to DIGI it at the SAME
192+
* time so that all those copies only take up one additional time slot. (but outward
193+
* located digs will hear it without collision (and continue outward propagation)
194+
*
168195
*/
169196

170197
for (to_chan=0; to_chan<MAX_CHANS; to_chan++) {
@@ -180,7 +207,7 @@ void digipeater (int from_chan, packet_t pp)
180207
save_digi_config_p->filter_str[from_chan][to_chan]);
181208
if (result != NULL) {
182209
dedupe_remember (pp, to_chan);
183-
tq_append (to_chan, TQ_PRIO_0_HI, result);
210+
tq_append (to_chan, TQ_PRIO_0_HI, result); // High priority queue.
184211
digi_count[from_chan][to_chan]++;
185212
}
186213
}
@@ -207,7 +234,7 @@ void digipeater (int from_chan, packet_t pp)
207234
save_digi_config_p->filter_str[from_chan][to_chan]);
208235
if (result != NULL) {
209236
dedupe_remember (pp, to_chan);
210-
tq_append (to_chan, TQ_PRIO_1_LO, result);
237+
tq_append (to_chan, TQ_PRIO_1_LO, result); // Low priority queue.
211238
digi_count[from_chan][to_chan]++;
212239
}
213240
}

0 commit comments

Comments
 (0)