|
优化和配置Windows蓝牙设备
Windows Registry Editor Version 5.00
;;优化和配置Windows蓝牙设备
;控制高占空比扫描的窗口和间隔时间(单位:时隙),影响扫描频率和功耗
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters]
"HighDutyCycleScanWindow"=dword:00000004
"HighDutyCycleScanInterval"=dword:00000004
;控制低占空比扫描的窗口和间隔时间,影响低功耗模式下的扫描效率
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters]
"LowDutyCycleScanWindow"=dword:00000002
"LowDutyCycleScanInterval"=dword:00000002
;定义链路监督超时时间单位毫秒,影响连接稳定性,超时过长可能导致连接中断
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters]
"LinkSupervisionTimeout"=dword:00000c80
;定义连接延迟(单位:时隙,影响:实时性要求高的应用(如音频)需设置较低值
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters]
"ConnectionLatency"=dword:00000000
;定义最小和最大连接间隔单位时隙,影响数据传输速率和功耗平衡
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters]
"ConnectionIntervalMin"=dword:00000006
"ConnectionIntervalMax"=dword:00000c80
;控制音频质量(如SBC、AAC编解码器
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters]
"AudioQuality"=dword:00000002
;启用低延迟音频流模式,影响:游戏或实时通信场景下的音频延迟
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters]
"LowLatencyAudio"=dword:00000001
;控制蓝牙适配器的功率模式,影响:设备续航和连接稳定性
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters]
"PowerManagement"=dword:00000001
;禁用省电模式
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters]
"DisablePowerSaving"=dword:00000001
;使设备在搜索中可见
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters]
"DeviceVisible"=dword:00000001
;设置连接超时时间(单位:秒
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters]
"ConnectionTimeout"=dword:0000001e
;启用增强数据速率(EDR)模式
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters]
"EnableEnhancedDataRate"=dword:00000001
;启用快速重连功能
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters]
"FastReconnect"=dword:00000001
;设置最大连接数
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters]
"MaxConnections"=dword:00000005
;调整信号强度-中等强度
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters]
"SignalStrength"=dword:00000002
|
|