15058b333SMatthias Ringwald /* 25058b333SMatthias Ringwald * Copyright (C) 2014 BlueKitchen GmbH 35058b333SMatthias Ringwald * 45058b333SMatthias Ringwald * Redistribution and use in source and binary forms, with or without 55058b333SMatthias Ringwald * modification, are permitted provided that the following conditions 65058b333SMatthias Ringwald * are met: 75058b333SMatthias Ringwald * 85058b333SMatthias Ringwald * 1. Redistributions of source code must retain the above copyright 95058b333SMatthias Ringwald * notice, this list of conditions and the following disclaimer. 105058b333SMatthias Ringwald * 2. Redistributions in binary form must reproduce the above copyright 115058b333SMatthias Ringwald * notice, this list of conditions and the following disclaimer in the 125058b333SMatthias Ringwald * documentation and/or other materials provided with the distribution. 135058b333SMatthias Ringwald * 3. Neither the name of the copyright holders nor the names of 145058b333SMatthias Ringwald * contributors may be used to endorse or promote products derived 155058b333SMatthias Ringwald * from this software without specific prior written permission. 165058b333SMatthias Ringwald * 4. Any redistribution, use, or modification is done solely for 175058b333SMatthias Ringwald * personal benefit and not for any commercial purpose or for 185058b333SMatthias Ringwald * monetary gain. 195058b333SMatthias Ringwald * 205058b333SMatthias Ringwald * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS 215058b333SMatthias Ringwald * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 225058b333SMatthias Ringwald * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 235058b333SMatthias Ringwald * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BLUEKITCHEN 245058b333SMatthias Ringwald * GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 255058b333SMatthias Ringwald * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 265058b333SMatthias Ringwald * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 275058b333SMatthias Ringwald * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 285058b333SMatthias Ringwald * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 295058b333SMatthias Ringwald * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 305058b333SMatthias Ringwald * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 315058b333SMatthias Ringwald * SUCH DAMAGE. 325058b333SMatthias Ringwald * 335058b333SMatthias Ringwald * Please inquire about commercial licensing options at 345058b333SMatthias Ringwald * [email protected] 355058b333SMatthias Ringwald * 365058b333SMatthias Ringwald */ 375058b333SMatthias Ringwald 385058b333SMatthias Ringwald /** 395058b333SMatthias Ringwald * @title General Utility Functions 405058b333SMatthias Ringwald * 415058b333SMatthias Ringwald */ 425058b333SMatthias Ringwald 435058b333SMatthias Ringwald #ifndef BTSTACK_VERSION_H 445058b333SMatthias Ringwald #define BTSTACK_VERSION_H 455058b333SMatthias Ringwald 465058b333SMatthias Ringwald #define BTSTACK_VERSION_MAJOR 1 475058b333SMatthias Ringwald #define BTSTACK_VERSION_MINOR 6 485058b333SMatthias Ringwald #define BTSTACK_VERSION_PATCH 2 495058b333SMatthias Ringwald 50*9eba3c0fSMatthias Ringwald #define BTSTACK_VERSION_STRING "1.6.2" 51*9eba3c0fSMatthias Ringwald 525058b333SMatthias Ringwald #endif 53