62 lines
1.4 KiB
C
62 lines
1.4 KiB
C
|
/** @file
|
||
|
* @brief Handsfree Profile handling.
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* Copyright (c) 2015-2016 Intel Corporation
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
#ifndef __BT_HFP_H
|
||
|
#define __BT_HFP_H
|
||
|
|
||
|
/**
|
||
|
* @brief Hands Free Profile (HFP)
|
||
|
* @defgroup bt_hfp Hands Free Profile (HFP)
|
||
|
* @ingroup bluetooth
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
#include <bluetooth/bluetooth.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/* HFP profile application callback */
|
||
|
struct bt_hfp_hf_cb {
|
||
|
void (*connected)(struct bt_conn *conn);
|
||
|
void (*disconnected)(struct bt_conn *conn);
|
||
|
};
|
||
|
|
||
|
/** @brief Register HFP HF profile
|
||
|
*
|
||
|
* Register Handsfree profile callbacks to monitor the state and get the
|
||
|
* required HFP details to display.
|
||
|
*
|
||
|
* @param cb callback structure.
|
||
|
*
|
||
|
* @return 0 in case of success or negative value in case of error.
|
||
|
*/
|
||
|
int bt_hfp_hf_register(struct bt_hfp_hf_cb *cb);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
/**
|
||
|
* @}
|
||
|
*/
|
||
|
|
||
|
#endif /* __BT_HFP_H */
|