1*490a6e27SMatthias Ringwald**_Note: Major API Changes. For older projects, you may use the [v0.9 branch](https://github.com/bluekitchen/btstack/tree/v0.9)_** 2*490a6e27SMatthias Ringwald 32d04a09aSmilamikica# Welcome to BTstack 42d04a09aSmilamikica 5bac2979aSMilanka RingwaldBTstack is [BlueKitchen's](http://bluekitchen-gmbh.com) implementation of the official Bluetooth stack. 6bac2979aSMilanka RingwaldIt is well suited for small, resource-constraint devices 72d04a09aSmilamikicasuch as 8 or 16 bit embedded systems as it is highly configurable and comes with an ultra small memory footprint. 82d04a09aSmilamikicaA minimal configuration for an SPP server on a MSP430 can run in 32 kB FLASH and only 4 kB of RAM. 92d04a09aSmilamikica 106d9dc928SMatthias RingwaldIt connects to the Bluetooth modules via a different Bluetooth HCI transport layers (e.g., HCI H4 UART and 116d9dc928SMatthias RingwaldH5 the "Tree-Wire" protocol, HCI H2 USB). Various platforms can be easily targeted by providing the necessary 122d04a09aSmilamikicaUART, CPU, and CLOCK implementations. 132d04a09aSmilamikica 142d04a09aSmilamikicaOn smaller embedded systems, a minimal run loop implementation allows to use BTstack without a Real Time OS (RTOS). 152d04a09aSmilamikicaIf a RTOS is already provided, BTstack can be integrated and run as a single thread. 162d04a09aSmilamikica 172d04a09aSmilamikicaOn larger systems, BTstack provides a daemon that connects to a Bluetooth module. 182d04a09aSmilamikicaMultiple applications can communicate with this daemon over different inter-process communication methods. 192d04a09aSmilamikica 206d9dc928SMatthias RingwaldBTstack supports both, the Central and the Peripheral Role of Bluetooth 4.2 Low Energy specification. 212d04a09aSmilamikicaIt can be configures as both a single mode or a dual mode stack. 222d04a09aSmilamikica 23b0715761SMilanka RingwaldBTstack is free for non-commercial use. For commercial use, <a href="mailto:[email protected]">tell us</a> 242d04a09aSmilamikicaa bit about your project to get a quote. 256d9dc928SMatthias RingwaldIt has been qualified with the the Bluetooth SIG for GAP, IOP, HFP, HSP, SPP, PAN profiles and 266d9dc928SMatthias RingwaldGATT, SM of the Bluetooth 4.2 LE Central and Peripheral roles (QD ID 25340). 272d04a09aSmilamikica 28439fcdeaSmilamikica## Documentation 29f25d0f87SMatthias Ringwald- [HTML](http://bluekitchen-gmbh.com/btstack/v1.0) 30f25d0f87SMatthias Ringwald- [PDF](http://bluekitchen-gmbh.com/btstack_v1.0.pdf) 31439fcdeaSmilamikica 322d04a09aSmilamikica## Supported Protocols 332d04a09aSmilamikica* L2CAP 342d04a09aSmilamikica* RFCOMM 352d04a09aSmilamikica* SDP 362d04a09aSmilamikica* BNEP 372d04a09aSmilamikica* ATT 382d04a09aSmilamikica* SM 392d04a09aSmilamikica 40bac2979aSMilanka Ringwald 412d04a09aSmilamikica## Supported Profiles 422d04a09aSmilamikica* GAP 432d04a09aSmilamikica* IOP 446d9dc928SMatthias Ringwald* HFP 456d9dc928SMatthias Ringwald* HSP 462d04a09aSmilamikica* SPP 472d04a09aSmilamikica* PAN 482d04a09aSmilamikica* GATT 49bac2979aSMilanka Ringwald 506d9dc928SMatthias RingwaldComing next: HID, HOGP, A2DP, and more. 51bac2979aSMilanka Ringwald 522fe24f3eSMatthias Ringwald## Evaluation Platforms 53bac2979aSMilanka Ringwald 54cd07fdb2SMilanka Ringwald#### Embedded Platforms: 550776193fSMatthias RingwaldStatus | Platform 560776193fSMatthias Ringwald-------------- | ------ 579f0dbd10SMatthias Ringwald | [EZ430-RF256x Bluetooth Evaluation Tool for MSP430](http://www.ti.com/tool/ez430-rf256x) 589f0dbd10SMatthias Ringwald | [MSP430F5438 Experimenter Board for MSP430](http://www.ti.com/tool/msp-exp430f5438) with [Bluetooth CC2564 Module Evaluation Board](http://www.ti.com/tool/cc2564modnem) 599f0dbd10SMatthias Ringwald | [MSP-EXP430F5529LP LaunchPad](http://www.ti.com/ww/en/launchpad/launchpads-msp430-msp-exp430f5529lp.html#tabs) with [Bluetooth CC2564 Module Evaluation Board](http://www.ti.com/tool/cc2564modnem) and [EM Adapter BoosterPack](http://www.ti.com/tool/boost-ccemadapter) with additional 32768Hz quartz oscillator 609f0dbd10SMatthias Ringwald | [STM32 Nucleo development board NUCLEO-F103RB](http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/LN1847/PF259875) with [Bluetooth CC2564 Module Evaluation Board](http://www.ti.com/tool/cc2564modnem) and [EM Adapter BoosterPack](http://www.ti.com/tool/boost-ccemadapter) with additional 32768Hz quartz oscillator 619f0dbd10SMatthias Ringwald | [Microchip's PIC32 Bluetooth Audio Development Kit](http://www.microchip.com/Developmenttools/ProductDetails.aspx?PartNO=DV320032) 629f0dbd10SMatthias Ringwald | [RedBear Duo](https://github.com/redbear/WICED-SDK) with Broadcom BCM43438 A1 630776193fSMatthias Ringwald 64cd07fdb2SMilanka Ringwald 65cd07fdb2SMilanka Ringwald#### Other Platforms: 660776193fSMatthias RingwaldStatus | Platform 670776193fSMatthias Ringwald-------------- | ------ 68556e5c6cSMatthias Ringwald| posix: Unix-based system talking to Bluetooth module via serial port 699f0dbd10SMatthias Ringwald| libusb: Unix-based system talking via USB Bluetooth dongle 70556e5c6cSMatthias Ringwald| daemon: TCP and Unix domain named socket client-server architecture supporting multiple clients 719f0dbd10SMatthias Ringwald| java: Java wrapper for daemon 729f0dbd10SMatthias Ringwald| iOS: daemon for iOS jailbreak devices, C client-server API 739f0dbd10SMatthias Ringwald| mtk: daemon for rooted Android devices, based on Mediatek MT65xx processor, Java and C client-server API 749f0dbd10SMatthias Ringwald | wiced: Broadcom platforms that support the WICED SDK 75bac2979aSMilanka Ringwald 76bac2979aSMilanka Ringwald## Supported Chipsets 77bac2979aSMilanka RingwaldChipsets | Status 78bac2979aSMilanka Ringwald-------------- | ------ 79b3d63497SMatthias RingwaldTI CC256x, WL183x | complete incl. eHCIll support and SCO-over-HCI (chipset/cc256x) 80b3d63497SMatthias RingwaldCSR 8x10, 8x11 | H4 only (chipset-csr), SCO-over-HCI missing (chipset/csr) 81b3d63497SMatthias RingwaldSTM STLC2500D | working, no support for custom deep sleep management (chipset/stlc2500d) 82b3d63497SMatthias RingwaldTC35661 | working, BLE patches missing (chipset/tc3566x) 83b3d63497SMatthias RingwaldEM 9301 (LE-only) | working, used on Arduino Shield (chipset/em9301) 846d9dc928SMatthias RingwaldCSR USB Dongles | complete, incl. SCO-over-HCI 85b3d63497SMatthias RingwaldBroadcom USB Dongles | complete, SCO-over-HCI not missing 86b3d63497SMatthias RingwaldBroadcom BCM43438 | complete. UART baudrate limited to 3 mbps, SCO-over-HCI not missing 8740276177SMatthias Ringwald 8840276177SMatthias Ringwald## Source Tree Overview 8940276177SMatthias RingwaldPath | Description 9040276177SMatthias Ringwald--------------------|--------------- 9140276177SMatthias Ringwaldchipset | Support for individual Bluetooth chipsets 9240276177SMatthias Ringwalddoc | Sources for BTstack documentation 93b3d63497SMatthias Ringwaldexample | Example applications available for all ports 9440276177SMatthias Ringwaldplatform | Support for special OSs and/or MCU architectures 957a33c82fSMatthias Ringwaldport | Complete port for a MCU + Chipset combinations 9640276177SMatthias Ringwaldsrc | Bluetooth stack implementation 9740276177SMatthias Ringwaldtest | Unit and PTS tests 9840276177SMatthias Ringwaldtool | Helper tools for BTstack 9940276177SMatthias Ringwald 100be0cb757SMatthias Ringwald## Discussion and Community Support 101be0cb757SMatthias Ringwald[BTstack Google Group](http://groups.google.com/group/btstack-dev) 102