headset_init.h

来自「bc5_stereo:bluetooth stereo Headset CODE」· C头文件 代码 · 共 95 行

H
95
字号
/****************************************************************************
Copyright (C) Cambridge Silicon Radio Ltd. 2005-2007

FILE NAME
    headset_init.h
    
DESCRIPTION
    
*/

#ifndef _HEADSET_INIT_H_
#define _HEADSET_INIT_H_


#include "headset_private.h"


/****************************************************************************
  FUNCTIONS
*/

/*************************************************************************
NAME    
    InitHeadsetData
    
DESCRIPTION
    This function initialises the data contained in the hsTaskData structure.    
*/
void InitHeadsetData ( hsTaskData *pApp );


/*************************************************************************
NAME    
    InitUserFeatures
    
DESCRIPTION
    This function initialises all of the user features - this will result in a
    power on message if a user event is configured correctly and the headset will 
    complete the power on.
*/
void InitUserFeatures ( hsTaskData *pApp );


/*************************************************************************
NAME    
    InitCodec
    
DESCRIPTION
    This function initialises the codec library.
*/
void InitCodec(void);


/*************************************************************************
NAME    
    InitConnection
    
DESCRIPTION
    This function initialises the connection library.
*/
void InitConnection(void);


/*************************************************************************
NAME    
    InitHfp
    
DESCRIPTION
    This function initialises the HFP library.
*/
void InitHfp(hsTaskData *pApp);


/*************************************************************************
NAME    
    InitA2dp
    
DESCRIPTION
    This function initialises the A2DP library.
*/
void InitA2dp(void);


/*************************************************************************
NAME    
    InitAvrcp
    
DESCRIPTION
    This function initialises the AVRCP library.
*/
void InitAvrcp(void);


#endif /* _HEADSET_INIT_H_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?