From 07a66f3923ed4a22df0a76e344a8906890b83b94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=82=96=E5=AE=87=E8=BF=AA?= Date: Thu, 11 Dec 2025 20:14:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20ble/protocol/Constants.ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ble/protocol/Constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ble/protocol/Constants.ts b/ble/protocol/Constants.ts index d6b75ad..0bdd2e6 100644 --- a/ble/protocol/Constants.ts +++ b/ble/protocol/Constants.ts @@ -14,7 +14,7 @@ export const FRAME_CONSTANTS = { MAX_DATA_SIZE: 496, HEADER_SIZE: 8, FOOTER_SIZE: 1, - FRAME_INTERVAL: 35, // package transfer idle interval in ms, set 35 ms for ble device have enough time to process data + FRAME_INTERVAL: 200, // package transfer idle interval in ms, set 35 ms for ble device have enough time to process data } as const; export type FRAME_HEAD = typeof FRAME_CONSTANTS.HEAD_DEVICE_TO_APP | typeof FRAME_CONSTANTS.HEAD_APP_TO_DEVICE;