1*c0cdcfe7SMatthias Ringwald /* 2*c0cdcfe7SMatthias Ringwald * Copyright (C) 2015 BlueKitchen GmbH 3*c0cdcfe7SMatthias Ringwald * 4*c0cdcfe7SMatthias Ringwald * Redistribution and use in source and binary forms, with or without 5*c0cdcfe7SMatthias Ringwald * modification, are permitted provided that the following conditions 6*c0cdcfe7SMatthias Ringwald * are met: 7*c0cdcfe7SMatthias Ringwald * 8*c0cdcfe7SMatthias Ringwald * 1. Redistributions of source code must retain the above copyright 9*c0cdcfe7SMatthias Ringwald * notice, this list of conditions and the following disclaimer. 10*c0cdcfe7SMatthias Ringwald * 2. Redistributions in binary form must reproduce the above copyright 11*c0cdcfe7SMatthias Ringwald * notice, this list of conditions and the following disclaimer in the 12*c0cdcfe7SMatthias Ringwald * documentation and/or other materials provided with the distribution. 13*c0cdcfe7SMatthias Ringwald * 3. Neither the name of the copyright holders nor the names of 14*c0cdcfe7SMatthias Ringwald * contributors may be used to endorse or promote products derived 15*c0cdcfe7SMatthias Ringwald * from this software without specific prior written permission. 16*c0cdcfe7SMatthias Ringwald * 4. Any redistribution, use, or modification is done solely for 17*c0cdcfe7SMatthias Ringwald * personal benefit and not for any commercial purpose or for 18*c0cdcfe7SMatthias Ringwald * monetary gain. 19*c0cdcfe7SMatthias Ringwald * 20*c0cdcfe7SMatthias Ringwald * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS 21*c0cdcfe7SMatthias Ringwald * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 22*c0cdcfe7SMatthias Ringwald * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 23*c0cdcfe7SMatthias Ringwald * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS 24*c0cdcfe7SMatthias Ringwald * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 25*c0cdcfe7SMatthias Ringwald * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 26*c0cdcfe7SMatthias Ringwald * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 27*c0cdcfe7SMatthias Ringwald * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 28*c0cdcfe7SMatthias Ringwald * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 29*c0cdcfe7SMatthias Ringwald * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 30*c0cdcfe7SMatthias Ringwald * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31*c0cdcfe7SMatthias Ringwald * SUCH DAMAGE. 32*c0cdcfe7SMatthias Ringwald * 33*c0cdcfe7SMatthias Ringwald * Please inquire about commercial licensing options at 34*c0cdcfe7SMatthias Ringwald * [email protected] 35*c0cdcfe7SMatthias Ringwald * 36*c0cdcfe7SMatthias Ringwald */ 37*c0cdcfe7SMatthias Ringwald 38*c0cdcfe7SMatthias Ringwald /* 39*c0cdcfe7SMatthias Ringwald * btstack_chipset_tc3566x.c 40*c0cdcfe7SMatthias Ringwald * 41*c0cdcfe7SMatthias Ringwald * Adapter to use Toshiba TC3566x-based chipsets with BTstack 42*c0cdcfe7SMatthias Ringwald * 43*c0cdcfe7SMatthias Ringwald * Supports: 44*c0cdcfe7SMatthias Ringwald * - Set BD ADDR 45*c0cdcfe7SMatthias Ringwald * - Set baud rate 46*c0cdcfe7SMatthias Ringwald */ 47*c0cdcfe7SMatthias Ringwald 48*c0cdcfe7SMatthias Ringwald #ifndef __BTSTACK_CHIPSET_TC3566X_H 49*c0cdcfe7SMatthias Ringwald #define __BTSTACK_CHIPSET_TC3566X_H 50*c0cdcfe7SMatthias Ringwald 51*c0cdcfe7SMatthias Ringwald #if defined __cplusplus 52*c0cdcfe7SMatthias Ringwald extern "C" { 53*c0cdcfe7SMatthias Ringwald #endif 54*c0cdcfe7SMatthias Ringwald 55*c0cdcfe7SMatthias Ringwald #include "btstack_chipset.h" 56*c0cdcfe7SMatthias Ringwald 57*c0cdcfe7SMatthias Ringwald const btstack_chipset_t * btstack_chipset_tc3566x_instance(void); 58*c0cdcfe7SMatthias Ringwald 59*c0cdcfe7SMatthias Ringwald #if defined __cplusplus 60*c0cdcfe7SMatthias Ringwald } 61*c0cdcfe7SMatthias Ringwald #endif 62*c0cdcfe7SMatthias Ringwald 63*c0cdcfe7SMatthias Ringwald #endif // __BTSTACK_CHIPSET_TC3566X_H 64