我需要将 Pandaboard 制作为蓝牙耳机。有可能实现这一目标吗?
我按照下面的 URL 将源代码闪存到 sdcard 中。在闪烁之前,我修改了 system/etc/bluetooth/audio.conf 文件。在 audio.config 文件中,我启用了 HFP=true。
网址:https ://releases.linaro.org/13.04/android/panda/
这样做后,我尝试通过以下 Android-java 连接到蓝牙设备
UUID MY_UUID = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");
m_oBluetoothSocket = btDevice.createRfcommSocketToServiceRecord(MY_UUID);
m_oBluetoothSocket.connect();
我也尝试在没有 UUID 的情况下进行连接,如下所示
Method m = btDevice.getClass().getMethod("createRfcommSocket", new Class[] {int.class});
m_oBluetoothSocket = (BluetoothSocket) m.invoke(btDevice, Integer.valueOf(1));
m_oBluetoothSocket.connect();
我无法连接到设备我看到无效的参数异常。
如果我尝试在 Android 手机上运行代码,我可以连接并发送 AT 命令。
但是在移动设备中我无法让它免提,我已经为它做了一个相关的帖子 https://stackoverflow.com/questions/19246344/is-it-possible-to-make-my-old-phone-as -免提和建立连接之间
回到 Pandaboard 我的方法正确吗?如何让 Pandaboard 蓝牙有耳机?
请分享对此的想法......