We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f012d27 commit 5ca2584Copy full SHA for 5ca2584
src/config.h.template
@@ -43,16 +43,16 @@
43
#define ANT_POWER_TX 0
44
45
/* Number of repeated TX values before a switch to RX occurs */
46
-#define MAX_DC_BYTES_TX ((1L<<18) * 14 / 10)
+#define MAX_DC_BYTES_TX ((1L<<11) * 14 / 10)
47
48
/* Max. iterations of DC check loop. This is used to drain the input fifo */
49
-#define DC_CHECK_MAX_LOOPS 128
+#define DC_CHECK_MAX_LOOPS 2048
50
51
/* Tolerance for DC values (keep this small!) */
52
#define DC_CHECK_TOLERANCE 1
53
54
/* Number of bytes to read during a DC check loop */
55
-#define DC_CHECK_BUFFER_LEN (1<<18)
+#define DC_CHECK_BUFFER_LEN (1<<12)
56
57
#define FREQ_OFFSET_PPM (0)
58
0 commit comments