Skip to content

Commit 88a3d58

Browse files
committed
Revert bluetoothUpdate to 100ms
1 parent defba5d commit 88a3d58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Firmware/RTK_Everywhere/Bluetooth.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ TaskHandle_t bluetoothCommandTaskHandle = nullptr; // Task to monitor incoming C
5454
void bluetoothUpdate()
5555
{
5656
#ifdef COMPILE_BT
57-
static uint32_t lastCheck = millis(); // Check if connected every 50ms
58-
if (millis() > (lastCheck + 50))
57+
static uint32_t lastCheck = millis(); // Check if connected every 100ms
58+
if (millis() > (lastCheck + 100))
5959
{
6060
lastCheck = millis();
6161

0 commit comments

Comments
 (0)