通常我可以通过命令
来控制界面 hciconfig hcix up/down
我可以使用c代码吗?
我可以参考示例代码吗?
由于
答案 0 :(得分:2)
您可以将c代码用于hciconfig本身。只需下载BlueZ source并打开工具/ hciconfig.c并使用以下功能: -
static void cmd_up(int ctl, int hdev, char *opt)
{
...
}
和
static void cmd_down(int ctl, int hdev, char *opt)
{
...
}