We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6141445 commit 78ca62cCopy full SHA for 78ca62c
Firmware/RTK_Surveyor/menuPP.ino
@@ -368,6 +368,10 @@ bool pointperfectProvisionDevice()
368
settings.pointPerfectCurrentKeyDuration = (*jsonZtp)["dynamickeys"]["current"]["duration"];
369
settings.pointPerfectCurrentKeyStart = (*jsonZtp)["dynamickeys"]["current"]["start"];
370
371
+ strcpy(settings.pointPerfectNextKey, (const char *)((*jsonZtp)["dynamickeys"]["next"]["value"]));
372
+ settings.pointPerfectNextKeyDuration = (*jsonZtp)["dynamickeys"]["next"]["duration"];
373
+ settings.pointPerfectNextKeyStart = (*jsonZtp)["dynamickeys"]["next"]["start"];
374
+
375
if (settings.debugLBand == true)
376
{
377
systemPrintf(" pointPerfectCurrentKey: %s\r\n", settings.pointPerfectCurrentKey);
0 commit comments