1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2004-2007 Marcel Holtmann <marcel@holtmann.org>
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include <bluetooth/sdp.h>
#include <bluetooth/sdp_lib.h>
#include <dbus/dbus.h>
#include "unix.h"
#define AUDIO_HEADSET_INTERFACE "org.bluez.audio.Headset"
#define DEFAULT_HS_AG_CHANNEL 12
#define DEFAULT_HF_AG_CHANNEL 13
typedef enum {
HEADSET_EVENT_KEYPRESS,
HEADSET_EVENT_GAIN,
HEADSET_EVENT_UNKNOWN,
HEADSET_EVENT_INVALID
} headset_event_t;
typedef enum {
HEADSET_STATE_DISCONNECTED = STATE_DISCONNECTED,
HEADSET_STATE_CONNECT_IN_PROGRESS = STATE_CONNECTING,
HEADSET_STATE_CONNECTED = STATE_CONNECTED,
HEADSET_STATE_PLAY_IN_PROGRESS = STATE_STREAM_STARTING,
HEADSET_STATE_PLAYING = STATE_STREAMING,
} headset_state_t;
typedef enum {
SVC_HEADSET,
SVC_HANDSFREE
} headset_type_t;
struct headset;
struct headset *headset_init(void *device, sdp_record_t *record,
uint16_t svc);
void headset_free(void *device);
void headset_update(void *device, sdp_record_t *record, uint16_t svc);
int headset_get_config(void *device, int sock, struct ipc_packet *pkt);
headset_type_t headset_get_type(void *device);
void headset_set_type(void *device, headset_type_t type);
int headset_connect_rfcomm(void *device, int sock);
int headset_close_rfcomm(void *device);
headset_state_t headset_get_state(void *device);
void headset_set_state(void *device, headset_state_t state);
int headset_get_channel(void *device);
|