# libbtbb **Repository Path**: GeekKernel/libbtbb ## Basic Information - **Project Name**: libbtbb - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-19 - **Last Updated**: 2025-04-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README libbtbb ======= This is the Bluetooth baseband decoding library, forked from the GR-Bluetooth project. It can be used to extract Bluetooth packet and piconet information from Ubertooth devices as well as GR-Bluetooth/USRP. This code is incomplete, it is still under active development. Patches and bug reports should be submitted to the bug tracker on GitHub: https://github.com/greatscottgadgets/libbtbb/issues This software has been developed and tested on Linux, it should work on other platforms but this has yet to be tested. Build Instructions ================== Libbtbb can be built and installed as follows: ``` $ mkdir build $ cd build $ cmake .. $ make $ sudo make install ``` This will install the library to /usr/local/lib and the headers to /usr/local/include, to install to different locations use: ``` $ cmake -DINSTALL_DIR=/path/to/install -DINCLUDE_DIR=/path/to/include .. ``` If you have previous versions of libbtbb, libubertooth or the Ubertooth tools installed, you can use the cleanup script to remove them: ``` $ sudo cmake/cleanup.sh -d ``` To list the installed files without removing them, use: ``` $ cmake/cleanup.sh ```