47 lines
1.2 KiB
C
47 lines
1.2 KiB
C
/**
|
|
****************************************************************************************
|
|
*
|
|
* @file co_version.h
|
|
*
|
|
* @brief Version definitions for BT5.1
|
|
*
|
|
* Copyright (C) RivieraWaves 2009-2018
|
|
*
|
|
*
|
|
****************************************************************************************
|
|
*/
|
|
|
|
#ifndef _CO_VERSION_H_
|
|
#define _CO_VERSION_H_
|
|
/**
|
|
****************************************************************************************
|
|
* @defgroup CO_VERSION Version Defines
|
|
* @ingroup COMMON
|
|
*
|
|
* @brief Bluetooth Controller Version definitions.
|
|
*
|
|
* @{
|
|
****************************************************************************************
|
|
*/
|
|
/*
|
|
* INCLUDE FILES
|
|
****************************************************************************************
|
|
*/
|
|
#include "co_bt.h" // BT standard definitions
|
|
|
|
|
|
/// RWBT SW Major Version
|
|
#define RWBT_SW_VERSION_MAJOR (BT52_VERSION)
|
|
/// RWBT SW Minor Version
|
|
#define RWBT_SW_VERSION_MINOR 0
|
|
/// RWBT SW Build Version
|
|
#define RWBT_SW_VERSION_BUILD 4
|
|
/// RWBT SW Major Version
|
|
#define RWBT_SW_VERSION_SUB_BUILD 0
|
|
|
|
|
|
/// @} CO_VERSION
|
|
|
|
|
|
#endif // _CO_VERSION_H_
|