Skip to content

Instantly share code, notes, and snippets.

@dictvm
Created August 18, 2016 16:38
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dictvm/85cc6ee19036ae292c0d1f2adcefd9bf to your computer and use it in GitHub Desktop.
Save dictvm/85cc6ee19036ae292c0d1f2adcefd9bf to your computer and use it in GitHub Desktop.
Okayish Bluetooth configuration for OS X El Capitan to work with Bose Soundlink Mini 2
{
"Apple Bitpool Max (editable)" = 80;
"Apple Bitpool Min (editable)" = 35;
"Apple Initial Bitpool (editable)" = 35;
"Apple Initial Bitpool Min (editable)" = 53;
"Negotiated Bitpool" = 80;
"Negotiated Bitpool Max" = 80;
"Negotiated Bitpool Min" = 80;
}
@dictvm
Copy link
Author

dictvm commented Aug 18, 2016

Set these settings using:

defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Max (editable)" 80
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" 35
defaults write com.apple.BluetoothAudioAgent "Apple Initial Bitpool (editable)" 35
defaults write com.apple.BluetoothAudioAgent "Apple Initial Bitpool Min (editable)" 53
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
sudo killall bluetoothaudiod

@LarsonRogers
Copy link

I believe the line setting the Negotiate Bitpool Min should be as follows to avoid an "unexpected argument" error:
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool Min" 80
Also, if using El Capitan or higher, use sudo killall coreaudiod to restart the system audio.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment