@onekeyfe/hd-transport-react-native 1.2.0-alpha.9 → 1.2.0-alpha.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/BleTransport.d.ts +2 -4
- package/dist/BleTransport.d.ts.map +1 -1
- package/dist/bleStrategy.d.ts +7 -2
- package/dist/bleStrategy.d.ts.map +1 -1
- package/dist/constants.d.ts +2 -2
- package/dist/constants.d.ts.map +1 -1
- package/dist/index.d.ts +114 -14
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +750 -312
- package/dist/subscribeBleOn.d.ts.map +1 -1
- package/dist/transportLog.d.ts +2 -0
- package/dist/transportLog.d.ts.map +1 -0
- package/dist/types.d.ts +1 -0
- package/dist/types.d.ts.map +1 -1
- package/jest.config.js +10 -0
- package/package.json +7 -6
- package/src/BleTransport.ts +10 -42
- package/src/__tests__/BleTransport.test.ts +114 -0
- package/src/__tests__/bleStrategy.test.ts +89 -6
- package/src/__tests__/connectTimeout.test.ts +292 -0
- package/src/__tests__/constants.test.ts +20 -0
- package/src/__tests__/enumerate.test.ts +132 -0
- package/src/__tests__/protocolReprobe.test.ts +132 -0
- package/src/__tests__/protocolV1SchemaFixture.ts +39 -0
- package/src/__tests__/protocolV2Link.test.ts +758 -46
- package/src/__tests__/staleCallTimeout.test.ts +210 -0
- package/src/__tests__/writePacketTimeout.test.ts +305 -0
- package/src/bleStrategy.ts +26 -36
- package/src/constants.ts +9 -14
- package/src/index.ts +990 -330
- package/src/subscribeBleOn.ts +0 -2
- package/src/transportLog.ts +1 -0
- package/src/types.ts +1 -0
package/dist/BleTransport.d.ts
CHANGED
|
@@ -3,16 +3,14 @@ export default class BleTransport {
|
|
|
3
3
|
id: string;
|
|
4
4
|
name: string;
|
|
5
5
|
device: Device;
|
|
6
|
-
mtuSize: number;
|
|
6
|
+
mtuSize: number | undefined;
|
|
7
7
|
writeCharacteristic: Characteristic;
|
|
8
8
|
notifyCharacteristic: Characteristic;
|
|
9
9
|
notifySubscription?: Subscription;
|
|
10
10
|
disconnectSubscription?: Subscription;
|
|
11
11
|
notifyTransactionId?: string;
|
|
12
12
|
monitorToken?: number;
|
|
13
|
-
static MAX_RETRIES: number;
|
|
14
|
-
static RETRY_DELAY: number;
|
|
15
13
|
constructor(device: Device, writeCharacteristic: Characteristic, notifyCharacteristic: Characteristic);
|
|
16
|
-
writeWithRetry(data: string
|
|
14
|
+
writeWithRetry(data: string): Promise<void>;
|
|
17
15
|
}
|
|
18
16
|
//# sourceMappingURL=BleTransport.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BleTransport.d.ts","sourceRoot":"","sources":["../src/BleTransport.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BleTransport.d.ts","sourceRoot":"","sources":["../src/BleTransport.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAEjF,MAAM,CAAC,OAAO,OAAO,YAAY;IAC/B,EAAE,EAAE,MAAM,CAAC;IAEX,IAAI,SAA6B;IAEjC,MAAM,EAAE,MAAM,CAAC;IAEf,OAAO,EAAE,MAAM,GAAG,SAAS,CAAC;IAE5B,mBAAmB,EAAE,cAAc,CAAC;IAEpC,oBAAoB,EAAE,cAAc,CAAC;IAErC,kBAAkB,CAAC,EAAE,YAAY,CAAC;IAElC,sBAAsB,CAAC,EAAE,YAAY,CAAC;IAEtC,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAE7B,YAAY,CAAC,EAAE,MAAM,CAAC;gBAGpB,MAAM,EAAE,MAAM,EACd,mBAAmB,EAAE,cAAc,EACnC,oBAAoB,EAAE,cAAc;IAiBhC,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;CAGlD"}
|
package/dist/bleStrategy.d.ts
CHANGED
|
@@ -3,13 +3,18 @@ export type BleWriteCapability = {
|
|
|
3
3
|
isWritableWithResponse?: boolean | null;
|
|
4
4
|
isWritableWithoutResponse?: boolean | null;
|
|
5
5
|
};
|
|
6
|
-
export type BleWriteMode = 'withResponse' | 'withoutResponse';
|
|
7
6
|
export declare function hasWritableCapability(characteristic: BleWriteCapability): boolean;
|
|
8
|
-
export declare function resolveBleWriteMode(characteristic: BleWriteCapability, preferredMode?: BleWriteMode): BleWriteMode;
|
|
9
7
|
export declare function resolveProtocolV2PacketCapacity({ platform, iosPacketLength, androidPacketLength, mtu, }: {
|
|
10
8
|
platform: BlePlatform;
|
|
11
9
|
iosPacketLength?: number;
|
|
12
10
|
androidPacketLength?: number;
|
|
13
11
|
mtu?: number | null;
|
|
14
12
|
}): number;
|
|
13
|
+
export declare function shouldRefreshNegotiatedMtu(mtu?: number | null): boolean;
|
|
14
|
+
export declare function shouldWriteProtocolV2WithResponse({ platform, highThroughput, requestedWithResponse, characteristic, }: {
|
|
15
|
+
platform: BlePlatform;
|
|
16
|
+
highThroughput: boolean;
|
|
17
|
+
requestedWithResponse?: boolean;
|
|
18
|
+
characteristic: BleWriteCapability;
|
|
19
|
+
}): boolean;
|
|
15
20
|
//# sourceMappingURL=bleStrategy.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bleStrategy.d.ts","sourceRoot":"","sources":["../src/bleStrategy.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,WAAW,GAAG,KAAK,GAAG,SAAS,GAAG,MAAM,CAAC;AAErD,MAAM,MAAM,kBAAkB,GAAG;IAC/B,sBAAsB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACxC,yBAAyB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;CAC5C,CAAC;AAEF,
|
|
1
|
+
{"version":3,"file":"bleStrategy.d.ts","sourceRoot":"","sources":["../src/bleStrategy.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,WAAW,GAAG,KAAK,GAAG,SAAS,GAAG,MAAM,CAAC;AAErD,MAAM,MAAM,kBAAkB,GAAG;IAC/B,sBAAsB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACxC,yBAAyB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;CAC5C,CAAC;AAEF,wBAAgB,qBAAqB,CAAC,cAAc,EAAE,kBAAkB,WAEvE;AAED,wBAAgB,+BAA+B,CAAC,EAC9C,QAAQ,EACR,eAA+C,EAC/C,mBAAuD,EACvD,GAAG,GACJ,EAAE;IACD,QAAQ,EAAE,WAAW,CAAC;IACtB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACrB,UAMA;AAED,wBAAgB,0BAA0B,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,WAE7D;AAED,wBAAgB,iCAAiC,CAAC,EAChD,QAAQ,EACR,cAAc,EACd,qBAAqB,EACrB,cAAc,GACf,EAAE;IACD,QAAQ,EAAE,WAAW,CAAC;IACtB,cAAc,EAAE,OAAO,CAAC;IACxB,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,cAAc,EAAE,kBAAkB,CAAC;CACpC,WAIA"}
|
package/dist/constants.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare const IOS_PACKET_LENGTH = 128;
|
|
2
2
|
export declare const ANDROID_PACKET_LENGTH = 192;
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const IOS_PROTOCOL_V2_PACKET_LENGTH = 244;
|
|
4
|
+
export declare const ANDROID_PROTOCOL_V2_PACKET_LENGTH = 244;
|
|
4
5
|
export declare const getBluetoothServiceUuids: () => string[];
|
|
5
6
|
export declare const getInfosForServiceUuid: (serviceUuid: string, deviceType: 'classic') => {
|
|
6
7
|
serviceUuid: string;
|
|
@@ -8,6 +9,5 @@ export declare const getInfosForServiceUuid: (serviceUuid: string, deviceType: '
|
|
|
8
9
|
notifyUuid?: string | undefined;
|
|
9
10
|
} | null;
|
|
10
11
|
export declare const normalizeBleUuid: (uuid?: string | null) => string;
|
|
11
|
-
export declare const getBleUuidKey: (uuid?: string | null) => string;
|
|
12
12
|
export declare const isSameBleUuid: (left?: string | null, right?: string | null) => boolean;
|
|
13
13
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iBAAiB,MAAM,CAAC;AACrC,eAAO,MAAM,qBAAqB,MAAM,CAAC;AACzC,eAAO,MAAM,6BAA6B,MAAM,CAAC;AACjD,eAAO,MAAM,iCAAiC,MAAM,CAAC;AA8BrD,eAAO,MAAM,wBAAwB,gBAA0B,CAAC;AAChE,eAAO,MAAM,sBAAsB,gBAAiB,MAAM,cAAc,SAAS;iBA1BhE,MAAM;;;QA2CtB,CAAC;AAEF,eAAO,MAAM,gBAAgB,UAAW,MAAM,GAAG,IAAI,WACP,CAAC;AAE/C,eAAO,MAAM,aAAa,UAAW,MAAM,GAAG,IAAI,UAAU,MAAM,GAAG,IAAI,YAGxE,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -8,17 +8,24 @@ declare class BleTransport {
|
|
|
8
8
|
id: string;
|
|
9
9
|
name: string;
|
|
10
10
|
device: Device;
|
|
11
|
-
mtuSize: number;
|
|
11
|
+
mtuSize: number | undefined;
|
|
12
12
|
writeCharacteristic: Characteristic;
|
|
13
13
|
notifyCharacteristic: Characteristic;
|
|
14
14
|
notifySubscription?: Subscription;
|
|
15
15
|
disconnectSubscription?: Subscription;
|
|
16
16
|
notifyTransactionId?: string;
|
|
17
17
|
monitorToken?: number;
|
|
18
|
-
static MAX_RETRIES: number;
|
|
19
|
-
static RETRY_DELAY: number;
|
|
20
18
|
constructor(device: Device, writeCharacteristic: Characteristic, notifyCharacteristic: Characteristic);
|
|
21
|
-
|
|
19
|
+
/**
|
|
20
|
+
* Bulk-transfer write (Protocol V1 FirmwareUpload / EmmcFileWrite only).
|
|
21
|
+
*
|
|
22
|
+
* Must stay writeWithoutResponse on every platform. writeWithResponse serialises
|
|
23
|
+
* each packet into its own connection-interval round trip, which on iOS turned a
|
|
24
|
+
* 1.7MB firmware upload (~13.5k packets) into a >10 minute transfer that never
|
|
25
|
+
* finished before the app-level timeout. Protocol V2 and ordinary V1 control
|
|
26
|
+
* messages pick their write type separately and are unaffected by this method.
|
|
27
|
+
*/
|
|
28
|
+
writeWithRetry(data: string): Promise<void>;
|
|
22
29
|
}
|
|
23
30
|
|
|
24
31
|
type TransportOptions = {
|
|
@@ -28,49 +35,102 @@ type BleAcquireInput = {
|
|
|
28
35
|
uuid: string;
|
|
29
36
|
forceCleanRunPromise?: boolean;
|
|
30
37
|
expectedProtocol?: ProtocolType;
|
|
38
|
+
protocolHint?: ProtocolType;
|
|
31
39
|
};
|
|
32
40
|
|
|
41
|
+
type FirmwareUploadWriteRetryType = 'congested';
|
|
33
42
|
type ResolvedBleCharacteristics = {
|
|
34
43
|
writeCharacteristic: Characteristic;
|
|
35
44
|
notifyCharacteristic: Characteristic;
|
|
36
45
|
};
|
|
46
|
+
declare const getFirmwareUploadWriteRetryType: (error: unknown) => FirmwareUploadWriteRetryType | null;
|
|
47
|
+
/**
|
|
48
|
+
* Per-packet write budget. iOS only resolves writeWithoutResponse once CoreBluetooth
|
|
49
|
+
* reports the peripheral ready again; a peripheral wedged by its own firmware reboot
|
|
50
|
+
* stops reporting ready while staying connected, so the write promise never settles.
|
|
51
|
+
* Response timeouts cannot cover that — they are armed after the writes complete —
|
|
52
|
+
* and an unbounded write leaves the whole transport unusable until the process dies.
|
|
53
|
+
* A healthy packet completes in milliseconds, so this only fires on a dead link.
|
|
54
|
+
*/
|
|
55
|
+
declare const BLE_WRITE_PACKET_TIMEOUT_MS = 10000;
|
|
56
|
+
/** Consecutive wedged writes on one device before the BLE manager itself is recreated. */
|
|
57
|
+
declare const BLE_WRITE_TIMEOUT_MANAGER_RESET_THRESHOLD = 2;
|
|
37
58
|
type ProtocolV2BleTuning = {
|
|
38
59
|
iosPacketLength?: number;
|
|
39
60
|
androidPacketLength?: number;
|
|
40
|
-
highVolumeWriteBurstSize?: number;
|
|
41
|
-
highVolumeWritePauseMs?: number;
|
|
42
|
-
highVolumeWriteFlushDelayMs?: number;
|
|
43
|
-
highVolumeWriteWithResponse?: boolean;
|
|
44
61
|
};
|
|
45
62
|
declare function configureProtocolV2BleTuning(tuning?: ProtocolV2BleTuning): void;
|
|
46
63
|
declare function resetProtocolV2BleTuning(): void;
|
|
47
64
|
declare function getProtocolV2BleTuning(): {
|
|
48
65
|
iosPacketLength: number;
|
|
49
66
|
androidPacketLength: number;
|
|
50
|
-
highVolumeWriteBurstSize: number;
|
|
51
|
-
highVolumeWritePauseMs: number;
|
|
52
|
-
highVolumeWriteFlushDelayMs: number;
|
|
53
|
-
highVolumeWriteWithResponse: boolean;
|
|
54
67
|
};
|
|
68
|
+
/**
|
|
69
|
+
* JS backstop for connect. The native adapter applies its own 3s budget, but it
|
|
70
|
+
* schedules that timeout on its serial queue, so a busy queue (e.g. right after a
|
|
71
|
+
* firmware install tears the link down) can leave the promise unsettled — observed
|
|
72
|
+
* blocking a reconnect for 61s until the app-level timeout. Healthy connects finish
|
|
73
|
+
* inside the native budget, so this only fires when the native timeout did not.
|
|
74
|
+
*/
|
|
75
|
+
declare const BLE_CONNECT_TIMEOUT_MS: number;
|
|
76
|
+
/**
|
|
77
|
+
* Service discovery and characteristic resolution run after connect() succeeds, but
|
|
78
|
+
* CoreBluetooth schedules them on the same serial queue. If that queue is wedged by a
|
|
79
|
+
* device reboot, these calls can remain pending forever unless they have their own
|
|
80
|
+
* budget.
|
|
81
|
+
*/
|
|
82
|
+
declare const BLE_GATT_SETUP_TIMEOUT_MS = 10000;
|
|
83
|
+
/**
|
|
84
|
+
* How many times a known device may fail its own protocol before we probe the others
|
|
85
|
+
* again. Reconnect polling during a device reboot repeats this every few seconds, and
|
|
86
|
+
* probing Protocol V2 costs a 10s Ping timeout, so paying it on every attempt for a
|
|
87
|
+
* device we just spoke V1 to dominates the wait. A firmware update can legitimately
|
|
88
|
+
* change a device's protocol, so the shortcut has to expire rather than stick.
|
|
89
|
+
*/
|
|
90
|
+
declare const PROTOCOL_REPROBE_FALLBACK_ATTEMPTS = 3;
|
|
91
|
+
/** BLE setup timeouts since the last successful setup before the manager is recreated. */
|
|
92
|
+
declare const BLE_CONNECT_TIMEOUT_MANAGER_RESET_THRESHOLD = 2;
|
|
55
93
|
type IOneKeyDevice = OneKeyDeviceInfoBase & Device;
|
|
56
94
|
declare class ReactNativeBleTransport {
|
|
57
95
|
blePlxManager: BleManager | undefined;
|
|
58
96
|
_messages: ReturnType<typeof transport__default.parseConfigure> | undefined;
|
|
59
97
|
_messagesV2: ReturnType<typeof transport__default.parseConfigure> | undefined;
|
|
98
|
+
private protocolV2SchemaConfiguration;
|
|
60
99
|
name: string;
|
|
61
100
|
configured: boolean;
|
|
62
101
|
stopped: boolean;
|
|
63
102
|
scanTimeout: number;
|
|
64
103
|
runPromise: Deferred<any> | null;
|
|
104
|
+
private runPromiseDeviceId;
|
|
65
105
|
emitter?: EventEmitter;
|
|
66
106
|
firmwareUploadWriteRecoveryIds: Set<string>;
|
|
107
|
+
/** Per-device protocol type detected by active wire-level probe after connect. */
|
|
67
108
|
private deviceProtocol;
|
|
109
|
+
/**
|
|
110
|
+
* Protocol a probe is currently trying, before the device has confirmed it. Calls
|
|
111
|
+
* must route with it, but acquire() must not treat it as a detected protocol: a
|
|
112
|
+
* probe that never answers would otherwise leave the reuse fast path handing out a
|
|
113
|
+
* transport that was never validated.
|
|
114
|
+
*/
|
|
115
|
+
private probingProtocols;
|
|
116
|
+
/** Consecutive write timeouts per device; reset by any write that completes. */
|
|
117
|
+
private writeTimeoutCounts;
|
|
118
|
+
/** BLE setup timeouts per device since the last complete characteristic resolution. */
|
|
119
|
+
private connectionSetupTimeoutCounts;
|
|
68
120
|
private deviceProtocolHints;
|
|
121
|
+
/** Protocol this device actually answered on, kept across reconnects of one session. */
|
|
122
|
+
private sessionProtocols;
|
|
123
|
+
/** Consecutive detections that failed while trusting sessionProtocols. */
|
|
124
|
+
private protocolReprobeFailures;
|
|
69
125
|
private protocolV2Assemblers;
|
|
70
126
|
private protocolV2FrameQueues;
|
|
71
127
|
private protocolV2FramePromises;
|
|
72
128
|
private protocolV2Links;
|
|
73
129
|
private monitorTokens;
|
|
130
|
+
private disconnectEventTokens;
|
|
131
|
+
private protocolV2HighVolumeLogSignatures;
|
|
132
|
+
private androidHighPriorityDevices;
|
|
133
|
+
private androidPriorityResetTimers;
|
|
74
134
|
private nextMonitorToken;
|
|
75
135
|
constructor(options: TransportOptions);
|
|
76
136
|
init(logger: any, emitter: EventEmitter): void;
|
|
@@ -80,24 +140,59 @@ declare class ReactNativeBleTransport {
|
|
|
80
140
|
getPlxManager(): Promise<BleManager>;
|
|
81
141
|
resolveCharacteristics(device: Device): Promise<ResolvedBleCharacteristics>;
|
|
82
142
|
attachDisconnectSubscription(transport: BleTransport, device: Device, uuid: string): void;
|
|
143
|
+
private emitDeviceDisconnect;
|
|
83
144
|
reconnectFirmwareUploadTransport(uuid: string, transport: BleTransport): Promise<void>;
|
|
145
|
+
/**
|
|
146
|
+
* 获取设备列表
|
|
147
|
+
* 在搜索超过超时时间或设备数量大于 5 台时,返回 OneKey 设备,
|
|
148
|
+
* @returns
|
|
149
|
+
*/
|
|
84
150
|
enumerate(): Promise<IOneKeyDevice[]>;
|
|
151
|
+
private installTransportForAcquire;
|
|
85
152
|
acquire(input: BleAcquireInput): Promise<{
|
|
86
153
|
uuid: string;
|
|
87
154
|
protocolType: ProtocolType;
|
|
88
155
|
}>;
|
|
89
156
|
_monitorCharacteristic(characteristic: Characteristic, uuid: string, monitorToken: number, notifyTransactionId: string): Subscription;
|
|
90
157
|
release(uuid: string, onclose?: boolean): Promise<boolean>;
|
|
158
|
+
private releaseNative;
|
|
91
159
|
post(session: string, name: string, data: Record<string, unknown>): Promise<void>;
|
|
92
160
|
call(uuid: string, name: string, data: Record<string, unknown>, options?: TransportCallOptions): Promise<transport.MessageFromOneKey>;
|
|
93
161
|
private callProtocolV1;
|
|
94
162
|
stop(): void;
|
|
95
163
|
disconnect(session: string): Promise<void>;
|
|
96
164
|
cancel(): void;
|
|
165
|
+
/** Run a native connect under the JS backstop budget. */
|
|
166
|
+
private connectWithTimeout;
|
|
167
|
+
/** Resolve the complete GATT shape under a budget so acquire() always settles. */
|
|
168
|
+
private resolveCharacteristicsWithTimeout;
|
|
169
|
+
/**
|
|
170
|
+
* Give up on a BLE setup operation the native layer did not settle. The abandoned
|
|
171
|
+
* operation still owns native connection/GATT state that can poison the next attempt,
|
|
172
|
+
* so it is cleared here without awaiting the same queue that stopped responding.
|
|
173
|
+
*/
|
|
174
|
+
private abandonStalledConnection;
|
|
97
175
|
private getCachedTransport;
|
|
176
|
+
/**
|
|
177
|
+
* Write one packet under a bounded budget. A write that never settles means the
|
|
178
|
+
* peripheral is wedged even though the GATT link still reports connected, so the
|
|
179
|
+
* link is torn down: releasing JS state alone would leave the poisoned peripheral
|
|
180
|
+
* cached and every later call would hang on it again.
|
|
181
|
+
*/
|
|
182
|
+
private writeBlePacket;
|
|
183
|
+
/**
|
|
184
|
+
* Drop a link whose writes stopped completing. The JS state is purged synchronously
|
|
185
|
+
* so the next acquire() cannot reuse the dead transport, while the native teardown is
|
|
186
|
+
* intentionally NOT awaited: it talks to the very layer that just stopped settling
|
|
187
|
+
* promises, so awaiting it could hang exactly like the write it is recovering from.
|
|
188
|
+
*/
|
|
189
|
+
private tearDownWedgedLink;
|
|
190
|
+
private resetPlxManager;
|
|
98
191
|
private createProtocolMismatchError;
|
|
99
192
|
private createProtocolDetectionError;
|
|
100
193
|
private clearProbeProtocol;
|
|
194
|
+
/** Protocol to route a call with: confirmed if known, otherwise the one being probed. */
|
|
195
|
+
private getActiveProtocol;
|
|
101
196
|
private detectProtocol;
|
|
102
197
|
private resetProbeStateAfterProtocolProbe;
|
|
103
198
|
private probeProtocolV1;
|
|
@@ -105,14 +200,19 @@ declare class ReactNativeBleTransport {
|
|
|
105
200
|
private handleProtocolV2Notification;
|
|
106
201
|
private getProtocolV2FrameQueue;
|
|
107
202
|
private resolveProtocolV2Frame;
|
|
108
|
-
private rejectAllProtocolV2Frames;
|
|
109
203
|
private resetProtocolV2Frames;
|
|
110
204
|
private rejectProtocolV2Frames;
|
|
111
205
|
private readProtocolV2Frame;
|
|
206
|
+
private writeProtocolV2Packet;
|
|
112
207
|
private writeProtocolV2Frame;
|
|
113
208
|
private callProtocolV2;
|
|
209
|
+
private ensureProtocolV2HighThroughputMtu;
|
|
210
|
+
private clearAndroidPriorityResetTimer;
|
|
211
|
+
private enableAndroidHighConnectionPriority;
|
|
212
|
+
private scheduleAndroidBalancedConnectionPriority;
|
|
213
|
+
private restoreAndroidConnectionPriority;
|
|
114
214
|
private createProtocolV2Adapter;
|
|
115
215
|
getProtocolType(path: string): ProtocolType | undefined;
|
|
116
216
|
}
|
|
117
217
|
|
|
118
|
-
export { IOneKeyDevice, ProtocolV2BleTuning, configureProtocolV2BleTuning, ReactNativeBleTransport as default, getProtocolV2BleTuning, resetProtocolV2BleTuning };
|
|
218
|
+
export { BLE_CONNECT_TIMEOUT_MANAGER_RESET_THRESHOLD, BLE_CONNECT_TIMEOUT_MS, BLE_GATT_SETUP_TIMEOUT_MS, BLE_WRITE_PACKET_TIMEOUT_MS, BLE_WRITE_TIMEOUT_MANAGER_RESET_THRESHOLD, IOneKeyDevice, PROTOCOL_REPROBE_FALLBACK_ATTEMPTS, ProtocolV2BleTuning, configureProtocolV2BleTuning, ReactNativeBleTransport as default, getFirmwareUploadWriteRetryType, getProtocolV2BleTuning, resetProtocolV2BleTuning };
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA,OAAO,EAIL,UAAU,IAAI,aAAa,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|