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 c8a7646 commit 5a8a656Copy full SHA for 5a8a656
Firmware/RTK_Everywhere/Bluetooth.ino
@@ -443,9 +443,11 @@ void BTConfirmRequestCallback(uint32_t numVal) {
443
if (bluetoothGetState() == BT_OFF)
444
return;
445
446
+ // TODO: if the RTK device has an OLED, we should display the PIN so user can confirm
447
systemPrintf("Device sent PIN: %06lu. Sending confirmation\r\n", numVal);
448
+#ifdef COMPILE_BT
449
bluetoothSerialSpp->confirmReply(true); // AUTO_PAIR - equivalent to enableSSP(false, true);
- // TODO: if the RTK device has an OLED, we should display the PIN so user can confirm
450
+#endif // COMPILE_BT
451
}
452
453
void deviceNameSpacesToUnderscores()
0 commit comments