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