# 解决Mac上AirPods链接断断续续的问题

# 在Mac命令行工具执行

defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Max (editable)" 80 
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" 80 
defaults write com.apple.BluetoothAudioAgent "Apple Initial Bitpool (editable)" 80 
defaults write com.apple.BluetoothAudioAgent "Apple Initial Bitpool Min (editable)" 80 
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool" 80 
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool Max" 80 
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool Min" 80
1
2
3
4
5
6
7

# 执行关闭蓝牙音频相关命令

sudo killall bluetoothaudiod
sudo killall coreaudiod
1
2

# 参考链接

更新时间: 11/21/2021, 2:45:24 AM