Files
pwm32e_pro/component/ble/ip/ble/gaf/api/cap/cap.h
T
moyuhai 41a602f89c V1.0
2026-06-09 16:39:17 +08:00

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_