13

我正在尝试在 linux[ubuntu] 中运行 c 的基本代码来搜索蓝牙设备,但我遇到了一些问题。

通过使用 commandsudo apt-get install bluez来安装所需的 blueZ 库,表示 bluez 已经是最新版本。

bluetooth.h但是错误来了,在编译 C 源代码时无法找到和其他文件,与gcc -o simplescan simplescan.c -lbluetooth

是否有完整的库包,还是我必须下载这些头文件?

我正在关注这个链接

4

4 回答 4

10

也许您没有包含必要的标题。

这是扫描蓝牙设备的代码示例

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include <bluetooth/bluetooth.h>
#include <bluetooth/hci.h>
#include <bluetooth/hci_lib.h>

int main(int argc, char **argv)
{
    inquiry_info *ii = NULL;
    int max_rsp, num_rsp;
    int dev_id, sock, len, flags;
    int i;
    char addr[19] = { 0 };
    char name[248] = { 0 };

    dev_id = hci_get_route(NULL);
    sock = hci_open_dev( dev_id );
    if (dev_id < 0 || sock < 0) {
        perror("opening socket");
        exit(1);
    }

    len  = 8;
    max_rsp = 255;
    flags = IREQ_CACHE_FLUSH;
    ii = (inquiry_info*)malloc(max_rsp * sizeof(inquiry_info));

    num_rsp = hci_inquiry(dev_id, len, max_rsp, NULL, &ii, flags);
    if( num_rsp < 0 ) perror("hci_inquiry");

    for (i = 0; i < num_rsp; i++) {
        ba2str(&(ii+i)->bdaddr, addr);
        memset(name, 0, sizeof(name));
        if (hci_read_remote_name(sock, &(ii+i)->bdaddr, sizeof(name), 
            name, 0) < 0)
        strcpy(name, "[unknown]");
        printf("%s  %s\n", addr, name);
    }

    free( ii );
    close( sock );
    return 0;
}

要在 linux 上编译它,只需执行

gcc -o simplescan simplescan.c -lbluetooth

编辑:

原始代码可以在这里找到

于 2013-02-11T12:39:24.540 回答
9

这解决了我的问题:

apt-get install libbluetooth-dev 
于 2019-04-25T20:22:04.693 回答
3

至于我知道这些标题没有包。您必须从 Internet 下载以下头文件。

  1. bluetooth.h
  2. hci.h
  3. hci_lib.h

并在您的主机中创建一个名为“ bluetooth”的目录并将上述标题复制到. 然后编译你的程序,它应该可以工作。/usr/lib//usr/lib/bluetooth/

注意:在编译链接时-lbluetooth

于 2014-11-27T11:29:15.823 回答
1

您需要安装 linux-headers 包。在 Ubuntu 或 Debian 上,这是通过这样做来完成的:

sudo apt install linux-headers
于 2017-08-31T14:30:13.497 回答