Skip to content

Commit 90ee33f

Browse files
committed
Convert stray Serial.prints.
1 parent 7937933 commit 90ee33f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Firmware/RTK_Surveyor/menuPP.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ bool pointperfectProvisionDevice()
204204
char givenName[100];
205205
char versionString[9];
206206
getFirmwareVersion(versionString, sizeof(versionString), false);
207-
Serial.printf("versionString: %s\r\n", versionString);
207+
systemPrintf("versionString: %s\r\n", versionString);
208208

209209
if (productVariant == RTK_FACET_LBAND)
210210
{
@@ -221,7 +221,7 @@ bool pointperfectProvisionDevice()
221221

222222
if (strlen(givenName) >= 50)
223223
{
224-
Serial.printf("Error: GivenName '%s' too long: %d bytes\r\n", givenName, strlen(givenName));
224+
systemPrintf("Error: GivenName '%s' too long: %d bytes\r\n", givenName, strlen(givenName));
225225
}
226226

227227
StaticJsonDocument<256> pointPerfectAPIPost;

0 commit comments

Comments
 (0)