I'm trying to add bluez library to my eclipse project on raspberry pi 3 (raspbian). This is what I've done:
- Bluez is already installed on raspberry pi 3 but i did not find the headers files so i followed this tutorial:
https://learn.adafruit.com/install-bluez-on-the-raspberry-pi/installation
Now in directory /usr/local/include/bluez-5.37/lib/bluetooth i've got bluetooth.h, hci.h, ...
- On eclipse:
Project > Properties > C/C++ Build > Settings > GCC C++ Compiler > Includes
In Include paths (-l) i add: /usr/local/include/bluez-5.37/lib/bluetooth
- On eclipse
Project > Properties > C/C++ Build > Settings > GCC C++ Linker > Libraries
In libraries (-l) i add: bluetooth
In Library search path (-L) i add: /usr/local/lib
This is the code that i'm trying to build
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include <bluetooth.h>
#include <hci.h>
#include <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;
}
Headers are found but this is what console says:
02:25:09 **** Incremental Build of configuration Release for project ComputerVision ****
make all
Building target: ComputerVision
Invoking: GCC C++ Linker
g++ -L/usr/local/lib -o "ComputerVision" ./src/ComputerVision.o -lopencv_core -lbluetooth -lopencv_imgproc -lopencv_highgui -lopencv_ml -lopencv_video -lopencv_features2d -lopencv_calib3d -lopencv_objdetect -lopencv_contrib -lopencv_legacy -lopencv_flann
/usr/bin/ld: cannot find -lbluetooth
makefile:45: recipe for target 'ComputerVision' failed
collect2: error: ld returned 1 exit status
make: *** [ComputerVision] Error 1
02:25:09 Build Finished (took 382ms)
Bit newbie on this things... any help plz? thanks!