]> rtime.felk.cvut.cz Git - tiny-bt.git/blobdiff - testf/t4/tiny_bt_hci_cmd.h
Removed files not present and bachelor thesis CD
[tiny-bt.git] / testf / t4 / tiny_bt_hci_cmd.h
diff --git a/testf/t4/tiny_bt_hci_cmd.h b/testf/t4/tiny_bt_hci_cmd.h
deleted file mode 100644 (file)
index 6824a54..0000000
+++ /dev/null
@@ -1,174 +0,0 @@
-//
-// C++ Interface: hcidriver
-//
-// Description: my idea , embeded system will be in waiting state. For this role it will be slave. Master it is a main computer or phone. 
-//
-//
-// Author: root <root@ubuntu>, (C) 2008
-//
-// Copyright: See COPYING file that comes with this distribution
-//
-//
-#ifndef __TINI_BT_HCI_CMD
-#define __TINI_BT_HCI_CMD
-
-#include<asm/types.h>
-#include<string.h>
-#include "hciembeded.h"
-
-
-
-/* CMD ocf and ogf */
-
-#define INQUIRY_CMD_OP                 0x0104
-#define INQUIRY_CANCEL_CMD_OP          0x0204
-#define CREATE_CONNECTION_CMD_OP       0x0504
-#define ACCEPT_CONNECTION_REQ_OP       0x0904
-#define DISCONNECT_CMD_OP              0x0604
-#define REMOTE_NAME_REQUEST_CMD_OP     0x1904
-#define RESET_CMD_OP                   0x030C
-#define        WRITE_LOCAL_NAME_CMD_OP         0x130C
-#define        READ_LOCAL_NAME_CMD_OP          0x140C
-#define READ_BD_ADDR_CMD_OP            0x0910
-
-#define max(a, b)       ((a) > (b) ? (a) : (b))
-#define min(a, b)       ((a) < (b) ? (a) : (b))
-
-typedef enum{
-       T1s28 = 1,
-       T2s56 = 2,      
-       T4s24 = 3,
-       T5s52 = 4,
-       T7s20 = 5,
-       T14s40 = 10
-}inq_time;
-
-typedef enum{
-       NUM_RSP_5 = 5,
-       NUM_RSP_10 = 10,
-       NUM_RSP_20 = 20
-}responce_num;
-
-
-/* BD_ADDR  (bluetooth.h)*/
-
-
-typedef struct{
-       __u8 byte[3];
-} __attribute__((packed)) dev_lap;
-
-
-
-/* Class of device*/
-
-typedef struct{
-       __u8 byte[3];
-}cl_device;
-
-
-typedef struct{
-       __u16 OCF_OGF;
-       void *p_cmdp;
-       __u16 cmdp_len;
-}hci_cmd_request;
-
-
-
-/* next function structures*/
-
-
-extern int send_hci_inquiry_cmd(void);
-extern int send_hci_read_bd_addr_cmd(void);
-extern int send_hci_read_local_name_cmd(void);
-extern int send_hci_create_connection_cmd(bt_address *p_dest_addr);
-extern int send_hci_accept_conn_req_cmd(bt_address *p_address);
-
-extern int send_cmd(hci_cmd_request *p_creq);
-
-extern void assemble_ocf_ogf(__u8 ogf,__u8 ocf,__u16 *p_ocf_ogf);
-extern void printba(bt_address *ba);
-extern int compare_bda(bt_address *p_first, bt_address *p_second);
-extern void fill_zero(bt_address *p_addr);
-extern void swap_addrbytes(bt_address *p_addr);
-extern __u16 swap_2_bytes(__u16 twobytes);
-extern __u8 swap8(__u8 byte1);
-extern __u16 swap16(__u16 byte2);
-extern __u16 swap_2_bytes(__u16 twobytes);
-extern void fill_add(bt_address *addr,__u8 first, __u8 sec, __u8 third, __u8 forth, __u8 fifth, __u8 sixth);
-
-static inline void hci_set_bit(int nr, void *addr)
-{
-       *((uint32_t *) addr + (nr >> 5)) |= (1 << (nr & 31));
-}
-
-static inline void hci_clear_bit(int nr, void *addr)
-{
-       *((uint32_t *) addr + (nr >> 5)) &= ~(1 << (nr & 31));
-}
-
-static inline int hci_test_bit(int nr, void *addr)
-{
-       return *((uint32_t *) addr + (nr >> 5)) & (1 << (nr & 31));
-}
-
-/* HCI filter tools */
-static inline void hci_filter_clear(struct hci_filter *f)
-{
-       memset(f, 0, sizeof(*f));
-}
-static inline void hci_filter_set_ptype(int t, struct hci_filter *f)
-{
-       hci_set_bit((t == HCI_VENDOR_PKT) ? 0 : (t & HCI_FLT_TYPE_BITS), &f->type_mask);
-}
-static inline void hci_filter_clear_ptype(int t, struct hci_filter *f)
-{
-       hci_clear_bit((t == HCI_VENDOR_PKT) ? 0 : (t & HCI_FLT_TYPE_BITS), &f->type_mask);
-}
-static inline int hci_filter_test_ptype(int t, struct hci_filter *f)
-{
-       return hci_test_bit((t == HCI_VENDOR_PKT) ? 0 : (t & HCI_FLT_TYPE_BITS), &f->type_mask);
-}
-static inline void hci_filter_all_ptypes(struct hci_filter *f)
-{
-       memset((void *) &f->type_mask, 0xff, sizeof(f->type_mask));
-}
-static inline void hci_filter_set_event(int e, struct hci_filter *f)
-{
-       hci_set_bit((e & HCI_FLT_EVENT_BITS), &f->event_mask);
-}
-static inline void hci_filter_clear_event(int e, struct hci_filter *f)
-{
-       hci_clear_bit((e & HCI_FLT_EVENT_BITS), &f->event_mask);
-}
-static inline int hci_filter_test_event(int e, struct hci_filter *f)
-{
-       return hci_test_bit((e & HCI_FLT_EVENT_BITS), &f->event_mask);
-}
-static inline void hci_filter_all_events(struct hci_filter *f)
-{
-       memset((void *) f->event_mask, 0xff, sizeof(f->event_mask));
-}
-static inline void hci_filter_set_opcode(int opcode, struct hci_filter *f)
-{
-       f->opcode = opcode;
-}
-static inline void hci_filter_clear_opcode(struct hci_filter *f)
-{
-       f->opcode = 0;
-}
-static inline int hci_filter_test_opcode(int opcode, struct hci_filter *f)
-{
-       return (f->opcode == opcode);
-}
-
-static inline int bacmp(const bt_address *ba1, const bt_address *ba2)
-{
-       return memcmp(ba1, ba2, sizeof(bt_address));
-}
-static inline void bacpy(bt_address *dst, const bt_address *src)
-{
-       memcpy(dst, src, sizeof(bt_address));
-}
-
-
-#endif  /* __HCIDRIVER */