Skip to content

Commit 6d6801d

Browse files
authored
Merge pull request #587 from LeeLeahy2/merges
Increase tolerances
2 parents 71b90a5 + 504f20d commit 6d6801d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Firmware/RTK_Everywhere/Begin.ino

+8-8
Original file line numberDiff line numberDiff line change
@@ -135,20 +135,20 @@ void identifyBoard()
135135
if (idWithAdc(idValue, 1, 10, 17.5))
136136
productVariant = RTK_EVK;
137137

138-
// Facet mosaic: 1/4.7 --> 2666mV < 2721mV < 2772mV (5.5% tolerance)
139-
else if (idWithAdc(idValue, 1, 4.7, 5.5))
138+
// Facet mosaic: 1/4.7 --> 2618mV < 2721mV < 2811mV (10% tolerance)
139+
else if (idWithAdc(idValue, 1, 4.7, 10))
140140
productVariant = RTK_FACET_MOSAIC;
141141

142-
// Facet v2 L-Band: 12.1/1.5 --> 318mV < 364mV < 416mV (7.5% tolerance)
143-
else if (idWithAdc(idValue, 12.1, 1.5, 7.5))
142+
// Facet v2 L-Band: 12.1/1.5 --> 312mV < 364mV < 423mV (8.5% tolerance)
143+
else if (idWithAdc(idValue, 12.1, 1.5, 8.5))
144144
productVariant = RTK_FACET_V2_LBAND;
145145

146-
// Facet v2: 10.0/2.7 --> 650mV < 702mV < 756mV (4.75% tolerance)
147-
else if (idWithAdc(idValue, 10.0, 2.7, 4.75))
146+
// Facet v2: 10.0/2.7 --> 612mV < 702mV < 801mV (8.5% tolerance)
147+
else if (idWithAdc(idValue, 10.0, 2.7, 8.5))
148148
productVariant = RTK_FACET_V2;
149149

150-
// Postcard: 3.3/10 --> 2421mV < 2481mV < 2539mV (4.75% tolerance)
151-
else if (idWithAdc(idValue, 3.3, 10, 4.75))
150+
// Postcard: 3.3/10 --> 2371mV < 2481mV < 2582mV (8.5% tolerance)
151+
else if (idWithAdc(idValue, 3.3, 10, 8.5))
152152
productVariant = RTK_POSTCARD;
153153
}
154154

0 commit comments

Comments
 (0)