在S3C2410上移植bluetooth(蓝牙)(7)
发布时间:2021-06-07
发布时间:2021-06-07
在S3C2410上移植bluetooth(蓝牙)
echo "PIN:123"
用C实现一个就是:
#include <stdio.h>
int main(int argc, char* argv[])
{
printf("PIN:123");
}
交叉编译成my_pin_helper再放到板子的/usr/bin下,那么就可以把板子的hcid.conf修改成: pin_helper /usr/pin/my_pin_helper
后来,我在板子上也用MiniGUI写了一个pin_helper,也挺简单的。
好了,一切准备完毕,做好ramdisk,记得在/dev下mknod几个rfcomm,放到板子上,可以运行! 插上USB适配器,连模块都不用probe
# hciconfig hci0 up
# hcid -f /etc/bluetooth/hcid.conf
# hciconfig -a
看到设备了,其他的运行都OK。结合ppp就可以用手机上网了
--同济大学高性能计算中心 Dennis
欢迎各位发邮件给我和我讨论