58 lines
1.2 KiB
C
58 lines
1.2 KiB
C
/**
|
|
****************************************************************************************
|
|
*
|
|
* @file cap.h
|
|
*
|
|
* @brief Common Audio Profile - Definitions
|
|
*
|
|
* Copyright (C) RivieraWaves 2019-2020
|
|
*
|
|
****************************************************************************************
|
|
*/
|
|
|
|
#ifndef CAP_H_
|
|
#define CAP_H_
|
|
|
|
/**
|
|
****************************************************************************************
|
|
* @addtogroup CAP Common Audio Profile
|
|
* @{
|
|
****************************************************************************************
|
|
*/
|
|
|
|
/*
|
|
* INCLUDE FILES
|
|
****************************************************************************************
|
|
*/
|
|
|
|
#include "gaf_cfg.h" // GAF Configuration
|
|
|
|
|
|
/*
|
|
* MACROS
|
|
****************************************************************************************
|
|
*/
|
|
|
|
/*
|
|
* ENUMERATIONS
|
|
****************************************************************************************
|
|
*/
|
|
|
|
/// Module type values
|
|
enum cap_module_type
|
|
{
|
|
/// Common
|
|
CAP_MODULE_COMMON = 0,
|
|
/// Common Audio Profile Server
|
|
CAP_MODULE_CAPS = 1,
|
|
/// Common Audio Profile Client
|
|
CAP_MODULE_CAPC = 2,
|
|
|
|
CAP_MODULE_MAX,
|
|
};
|
|
|
|
/// @}
|
|
|
|
#endif // CAP_H_
|
|
|