Skip to content

Commit bd3da78

Browse files
committed
Actually let's make it 5 seconds - still short enough that it shouldn't be a problem for users
1 parent 1350a55 commit bd3da78

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
Bangle.js: setUI/etc now don't draw a 'back' icon if there is no widget bar (or it's hidden)
3030
ESP32: Remove FlashFS, adjust partitions to increase available Storage from 256kB to 896kB
3131
Storage: Don't attempt to compact if it's obvious that we don't have space for the file even when compacted
32-
Increase Packet timeout from 1 to 2 sec (increase reliability over slow Bluetooth LE connections)
32+
Increase Packet timeout from 1 to 5 sec (increase reliability over slow Bluetooth LE connections)
3333

3434
2v25 : ESP32C3: Get analogRead working correctly
3535
Graphics: Adjust image alignment when rotating images to avoid cropping (fix #2535)

src/jsinteractive.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1644,7 +1644,7 @@ static void jsiPacketStart() {
16441644
inputState = IPS_PACKET_TRANSFER_BYTE0;
16451645
jsiInputLineCursorMoved(); // unlock iterator
16461646
jsvObjectSetChildAndUnLock(execInfo.hiddenRoot, "PK_IL", inputLine); // back up old inputline
1647-
jsvObjectSetChildAndUnLock(execInfo.hiddenRoot, "PK_TIMEOUT", jsiSetTimeout(jsiPacketTimeoutHandler, 2000));
1647+
jsvObjectSetChildAndUnLock(execInfo.hiddenRoot, "PK_TIMEOUT", jsiSetTimeout(jsiPacketTimeoutHandler, 5000));
16481648
inputLine = jsvNewFromEmptyString();
16491649
}
16501650

0 commit comments

Comments
 (0)