xref: /libbtbb/README.md (revision 054c205c290a4518b80df22fc3a3a1f2a8ca6269)
1libbtbb
2=======
3
4This is the Bluetooth baseband decoding library, forked from the GR-Bluetooth
5project.  It can be used to extract Bluetooth packet and piconet information
6from Ubertooth devices as well as GR-Bluetooth/USRP.
7
8This code is incomplete, it is still under active development.  Patches and
9bug reports should be submitted to the bug tracker on GitHub:
10https://github.com/greatscottgadgets/libbtbb/issues
11
12This software has been developed and tested on Linux, it should work on other
13platforms but this has yet to be tested.
14
15
16Build Instructions
17==================
18
19Libbtbb can be built and installed as follows:
20```
21$ mkdir build
22$ cd build
23$ cmake ..
24$ make
25$ make install
26```
27
28This will install the library to /usr/local/lib and the headers to
29/usr/local/include, to install to different locations use:
30```
31$ cmake -DINSTALL_DIR=/path/to/install -DINCLUDE_DIR=/path/to/include ..
32```
33