You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was getting too many excessive warning messages indicating that the header is inverted when the radio channel is in idle states with no traffic in the air.
Perhaps, it is due to too much audio gain on idle RF channel. In stead of root causing the problem, I reduce the trigger level of Inverted Header warning only when the received header is exact opposite. This drastically reduced the number of warnings, but still able to inform the user when the actual header is inverted.
else if (__builtin_popcount ((~F->acc & 0x00ffffff) ^ IL2P_SYNC_WORD) == 0) {
text_color_set (DW_COLOR_INFO);
// FIXME - this pops up occasionally with random noise. Find better way to convey information.
// This also happens for each slicer - to noisy.
// KG6KZZ display inversion hints only when header matches exact opposite polarity
dw_printf ("IL2P header has reverse polarity\n");
F->polarity = 1;
F->state = IL2P_HEADER;
The text was updated successfully, but these errors were encountered:
I was getting too many excessive warning messages indicating that the header is inverted when the radio channel is in idle states with no traffic in the air.
Perhaps, it is due to too much audio gain on idle RF channel. In stead of root causing the problem, I reduce the trigger level of Inverted Header warning only when the received header is exact opposite. This drastically reduced the number of warnings, but still able to inform the user when the actual header is inverted.
Jason Kim. KG6KZZ
=========================================================
diff --git a/src/il2p_rec.c b/src/il2p_rec.c
index bc39bd1..132a9d0 100644
--- a/src/il2p_rec.c
+++ b/src/il2p_rec.c
@@ -127,10 +126,12 @@ void il2p_rec_bit (int chan, int subchan, int slice, int dbit)
F->bc = 0;
F->hc = 0;
}
The text was updated successfully, but these errors were encountered: