고르지 못한 Bluetooth 오디오 : Mavericks에서 Bluetooth 비트 풀 설정을 유지하는 방법은 무엇입니까?


16

Bluetooth 3.0 / aptX 오디오 장치를 사용하고 있습니다. OSX의 기본 비트 풀 설정이 잘못되어 장치를 페어링하면 오디오가 고르지 않게됩니다.

이 문제는 예를 들어 stackexchange 에서 광범위하게 문서화되었습니다 .

새로운 기본값을 설정하여 Yosemite에 대한 수정 이있었습니다 .

defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Max (editable)" 80 
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" 48 
defaults write com.apple.BluetoothAudioAgent "Apple Initial Bitpool (editable)" 40 
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool" 58 
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool Max" 58 
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool Min" 48

Mavericks에서는 작동하지 않습니다.

# defaults read com.apple.BluetoothAudioAgent
2015-01-29 17:28:12.522 defaults[80133:934404]
Domain /Users/jottr/Library/Preferences/com.apple.BluetoothAudioAgent does not exist

새 설정을 com.apple.BluetoothAudioAgent작성해도 매버릭스의 실제 비트 풀 설정에는 영향 을 미치지 않습니다.

Bluetooth 탐색기 앱 (Xcode의 일부) 에서 Bluetooth 비트 풀 설정을 설정할 수 있습니다 .

블루투스 익스플로러

이 설정은 재부팅 후에도 유지되지 않습니다.

매버릭스를 재부팅 할 때 원하는 Bluetooth 오디오 비트 풀 설정을 유지하려면 어떻게해야합니까?

답변:


1

시스템이 기본적으로 USB Bluetooth 를 사용하도록하려면 다음 명령을 시도하십시오.

sudo nvram bluetoothHostControllerSwitchBehavior=always

부팅 커널 인수가 수정됩니다.

반대로하려면을 사용하십시오 never. 재부팅 후 변경 사항이 적용됩니다. 기본값으로 돌아가려면 다음을 실행하십시오.

sudo nvram -d bluetoothHostControllerSwitchBehavior
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.