btstack/platform/daemon/btstack_client.h

100 lines
3.1 KiB
C
Raw Normal View History

/*
2015-02-06 16:19:27 +00:00
* Copyright (C) 2014 BlueKitchen GmbH
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holders nor the names of
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
2015-02-06 16:19:27 +00:00
* 4. Any redistribution, use, or modification is done solely for
* personal benefit and not for any commercial purpose or for
* monetary gain.
*
2015-02-06 16:19:27 +00:00
* THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
* RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
2015-02-06 16:19:27 +00:00
* Please inquire about commercial licensing options at
* contact@bluekitchen-gmbh.com
*
*/
2009-07-01 21:55:08 +00:00
/*
* btstack.h
*
* Created by Matthias Ringwald on 7/1/09.
*
* BTstack client API
*
*/
2015-12-18 15:47:50 +00:00
#ifndef __BTSTACK_CLIENT_H
#define __BTSTACK_CLIENT_H
2009-07-28 21:04:16 +00:00
2016-01-21 10:33:17 +00:00
#include "hci_cmd.h"
2015-11-16 14:11:40 +00:00
#include "daemon_cmds.h"
2016-01-20 14:08:39 +00:00
#include "btstack_run_loop.h"
#include "btstack_util.h"
#include "btstack-config.h"
2009-07-28 21:04:16 +00:00
#include <stdint.h>
#if defined __cplusplus
extern "C" {
#endif
2010-02-28 21:37:59 +00:00
// Default TCP port for BTstack daemon
#ifndef BTSTACK_PORT
2010-02-28 21:37:59 +00:00
#define BTSTACK_PORT 13333
#endif
2010-02-28 21:37:59 +00:00
// UNIX domain socket for BTstack */
#ifndef BTSTACK_UNIX
2010-02-28 21:37:59 +00:00
#define BTSTACK_UNIX "/tmp/BTstack"
#endif
2010-02-28 21:37:59 +00:00
// optional: if called before bt_open, TCP socket is used instead of local unix socket
2010-02-28 21:45:22 +00:00
// note: address is not copied and must be valid during bt_open
2010-02-28 21:37:59 +00:00
void bt_use_tcp(const char * address, uint16_t port);
2009-10-22 20:00:10 +00:00
// init BTstack library
2011-06-06 13:57:15 +00:00
int bt_open(void);
// stop using BTstack library
2011-06-06 13:57:15 +00:00
int bt_close(void);
// send hci cmd packet
int bt_send_cmd(const hci_cmd_t *cmd, ...);
// register packet handler -- channel only valid for l2cap and rfcomm packets
2009-10-22 20:01:51 +00:00
// @returns old packet handler
2009-10-22 20:00:10 +00:00
btstack_packet_handler_t bt_register_packet_handler(btstack_packet_handler_t handler);
void bt_send_acl(uint8_t * data, uint16_t len);
void bt_send_l2cap(uint16_t local_cid, uint8_t *data, uint16_t len);
2011-04-30 20:30:05 +00:00
void bt_send_rfcomm(uint16_t rfcom_cid, uint8_t *data, uint16_t len);
#if defined __cplusplus
}
#endif
#endif // __BTSTACK_H