Skip to content

Commit 0ea041b

Browse files
committed
Comment coordinate type console logs in main.js
1 parent 0d8c2b0 commit 0ea041b

File tree

1 file changed

+7
-7
lines changed
  • Firmware/RTK_Surveyor/AP-Config/src

1 file changed

+7
-7
lines changed

Firmware/RTK_Surveyor/AP-Config/src/main.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1782,11 +1782,11 @@ function identifyInputType(userEntry) {
17821782
if (dashCount > 3) return (CoordinateTypes.COORDINATE_INPUT_TYPE_INVALID_UNKNOWN); //Only 0, 1, 2, or 3 allowed. -105-11-05.1629 is valid.
17831783
if (lengthOfLeadingNumber > 7) return (CoordinateTypes.COORDINATE_INPUT_TYPE_INVALID_UNKNOWN); //Only 7 or fewer. -1051105.188992 (DDDMMSS or DDMMSS) is valid
17841784

1785-
console.log("userEntry: " + userEntry);
1786-
console.log("decimalCount: " + decimalCount);
1787-
console.log("spaceCount: " + spaceCount);
1788-
console.log("dashCount: " + dashCount);
1789-
console.log("lengthOfLeadingNumber: " + lengthOfLeadingNumber);
1785+
//console.log("userEntry: " + userEntry);
1786+
//console.log("decimalCount: " + decimalCount);
1787+
//console.log("spaceCount: " + spaceCount);
1788+
//console.log("dashCount: " + dashCount);
1789+
//console.log("lengthOfLeadingNumber: " + lengthOfLeadingNumber);
17901790

17911791
var negativeSign = false;
17921792
if (userEntry[0] == '-') {
@@ -1886,8 +1886,8 @@ function identifyInputType(userEntry) {
18861886
if (negativeSign) convertedCoordinate *= -1.0;
18871887
}
18881888

1889-
console.log("convertedCoordinate: " + Number(convertedCoordinate).toFixed(9));
1890-
console.log("Detected type: " + printableInputType(coordinateInputType));
1889+
//console.log("convertedCoordinate: " + Number(convertedCoordinate).toFixed(9));
1890+
//console.log("Detected type: " + printableInputType(coordinateInputType));
18911891
return (coordinateInputType);
18921892
}
18931893

0 commit comments

Comments
 (0)