2007-10-21 21:56:01 +04:00
|
|
|
/*
|
2007-11-30 22:51:44 +03:00
|
|
|
* Copyright 2007 Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com
|
|
|
|
*
|
|
|
|
* All rights reserved. Distributed under the terms of the MIT License.
|
2007-10-21 21:56:01 +04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BLUETOOTH_H
|
|
|
|
#define _BLUETOOTH_H
|
|
|
|
|
|
|
|
#include <ByteOrder.h>
|
|
|
|
|
|
|
|
/* Bluetooth version */
|
|
|
|
#define BLUETOOTH_1_1B 0
|
|
|
|
#define BLUETOOTH_1_1 1
|
|
|
|
#define BLUETOOTH_1_2 2
|
|
|
|
#define BLUETOOTH_2_0 3
|
|
|
|
|
|
|
|
#define BLUETOOTH_VERSION BLUETOOTH_2_0
|
|
|
|
|
|
|
|
|
|
|
|
/* Bluetooth common types */
|
|
|
|
|
|
|
|
/* BD Address */
|
|
|
|
typedef struct {
|
|
|
|
uint8 b[6];
|
|
|
|
} __attribute__((packed)) bdaddr_t;
|
|
|
|
|
2008-06-12 23:31:29 +04:00
|
|
|
|
|
|
|
#define BDADDR_NULL (&(bdaddr_t) {{0, 0, 0, 0, 0, 0}})
|
|
|
|
#define BDADDR_LOCAL (&(bdaddr_t) {{0, 0, 0, 0xff, 0xff, 0xff}})
|
|
|
|
#define BDADDR_BROADCAST (&(bdaddr_t) {{0xff, 0xff, 0xff, 0xff, 0xff, 0xff}})
|
|
|
|
#define BDADDR_ANY BDADDR_BROADCAST
|
|
|
|
|
2007-10-21 21:56:01 +04:00
|
|
|
/* 128 integer type needed for SDP */
|
|
|
|
struct int128 {
|
|
|
|
int8 b[16];
|
|
|
|
};
|
|
|
|
typedef struct int128 int128;
|
|
|
|
typedef struct int128 uint128;
|
|
|
|
|
2008-06-12 23:31:29 +04:00
|
|
|
/* Protocol definitions - add to as required... */
|
|
|
|
#define BLUETOOTH_PROTO_HCI 134 /* HCI protocol number */
|
|
|
|
#define BLUETOOTH_PROTO_L2CAP 135 /* L2CAP protocol number */
|
|
|
|
#define BLUETOOTH_PROTO_RFCOMM 136 /* RFCOMM protocol number */
|
|
|
|
|
|
|
|
#define BLUETOOTH_PROTO_MAX 256
|
|
|
|
|
2007-10-21 21:56:01 +04:00
|
|
|
|
|
|
|
#endif
|