我要求将Pandaboard作为蓝牙耳机。是否有可能实现这一目标?
我按照以下URL将源代码刷新为sdcard。在闪烁之前我修改了系统/ 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-handsfree-and-establish-connection-betwee
回到Pandaboard我的方法是正确的吗?如何使Pandaboard蓝牙具有Headset ??
请分享对此的想法......