/***************************************************************************//** * @brief Bluetooth stack version definition ******************************************************************************* * # License * Copyright 2022 Silicon Laboratories Inc. www.silabs.com ******************************************************************************* * * The licensor of this software is Silicon Laboratories Inc. Your use of this * software is governed by the terms of Silicon Labs Master Software License * Agreement (MSLA) available at * www.silabs.com/about-us/legal/master-software-license-agreement. This * software is distributed to you in Source Code format and is governed by the * sections of the MSLA applicable to Source Code. * ******************************************************************************/ #ifndef SL_BT_VERSION_H #define SL_BT_VERSION_H /***************************************************************************//** * @addtogroup sl_bt_version Bluetooth SDK version * @brief Bluetooth SDK version information * @{ */ /** * @brief The major number of Bluetooth SDK version * * An increment indicates incompatible Bluetooth API changes. */ #define SL_BT_VERSION_MAJOR 9 /** * @brief The minor number of Bluetooth SDK version * * An increment indicates new backwards compatible functionalities. */ #define SL_BT_VERSION_MINOR 0 /** * @brief The patch number of Bluetooth SDK version * * An increment indicates backwards compatible bug fixes. */ #define SL_BT_VERSION_PATCH 1 /** * @brief The build number which the Bluetooth SDK was created from */ #define SL_BT_VERSION_BUILD 341 /** * @brief The hash value of the build the Bluetooth SDK was created from */ #define SL_BT_VERSION_HASH {0x4d,0x9c,0xee,0x3e,0x47,0x47,0x76,0xad,0x6d,0x0c,0xc3,0x0c,0xe5,0x8c,0x68,0x88,0xd9,0xd6,0x50,0xd4} /** * Deprecated and replaced by SL_BT_VERSION_MAJOR */ #define BG_VERSION_MAJOR SL_BT_VERSION_MAJOR /** * Deprecated and replaced by SL_BT_VERSION_MINOR */ #define BG_VERSION_MINOR SL_BT_VERSION_MINOR /** * Deprecated and replaced by SL_BT_VERSION_PATCH */ #define BG_VERSION_PATCH SL_BT_VERSION_PATCH /** * Deprecated and replaced by SL_BT_VERSION_BUILD */ #define BG_VERSION_BUILD SL_BT_VERSION_BUILD /** * Deprecated and replaced by SL_BT_VERSION_HASH */ #define BG_VERSION_HASH SL_BT_VERSION_HASH /** @} */ // end addtogroup sl_bt_version #endif