README.md (85fe141ec707a8e9233751a73d416af88c48168c) | README.md (430a24260f881858feb4c11eb24e214423d4798e) |
---|---|
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: | 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 $ mkdir build 21 $ cd build 22 $ cmake .. 23 $ make 24 $ make install | 20``` 21$ mkdir build 22$ cd build 23$ cmake .. 24$ make 25$ make install 26``` |
25 26This will install the library to /usr/local/lib and the headers to 27/usr/local/include, to install to different locations use: | 27 28This will install the library to /usr/local/lib and the headers to 29/usr/local/include, to install to different locations use: |
28 $ cmake -DINSTALL_DIR=/path/to/install -DINCLUDE_DIR=/path/to/include .. 29 | 30``` 31$ cmake -DINSTALL_DIR=/path/to/install -DINCLUDE_DIR=/path/to/include .. 32``` |