Monado OpenXR Runtime
opengloves_bt_serial.h
Go to the documentation of this file.
1// Copyright 2019-2022, Collabora, Ltd.
2// SPDX-License-Identifier: BSL-1.0
3/*!
4 * @file
5 * @brief Bluetooth Serial interface for OpenGloves.
6 * @author Daniel Willmott <web@dan-w.com>
7 * @ingroup drv_opengloves
8 */
9
10#pragma once
11
12#include "../opengloves_communication.h"
13
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19
21{
23 int sock;
24};
25
26int
27opengloves_bt_open(const char *btaddr, struct opengloves_communication_device **out_comm_dev);
28
29#ifdef __cplusplus
30}
31#endif
Definition: opengloves_bt_serial.h:21
Interface for a communication method.
Definition: opengloves_communication.h:26