mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-15 08:14:28 +08:00
f22f166d6e
This patch adds SPDX License Identifier and removes the license text. ------------------------------------- License COUNT ------------------------------------- GPL-2.0-or-later : 11 License: GPL-2.0-or-later client/adv_monitor.c client/adv_monitor.h client/advertising.h client/display.c client/main.c client/display.h client/agent.h client/gatt.c client/agent.c client/advertising.c client/gatt.h
25 lines
836 B
C
25 lines
836 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
*
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
*
|
|
* Copyright (C) 2020 Google LLC
|
|
*
|
|
*
|
|
*/
|
|
|
|
#define RSSI_DEFAULT_HIGH_THRESHOLD -50
|
|
#define RSSI_DEFAULT_LOW_THRESHOLD -70
|
|
#define RSSI_DEFAULT_HIGH_TIMEOUT 10
|
|
#define RSSI_DEFAULT_LOW_TIMEOUT 5
|
|
|
|
void adv_monitor_add_manager(DBusConnection *conn, GDBusProxy *proxy);
|
|
void adv_monitor_remove_manager(DBusConnection *conn);
|
|
void adv_monitor_register_app(DBusConnection *conn);
|
|
void adv_monitor_unregister_app(DBusConnection *conn);
|
|
void adv_monitor_add_monitor(DBusConnection *conn, char *type,
|
|
gboolean rssi_enabled, int argc, char *argv[]);
|
|
void adv_monitor_print_monitor(DBusConnection *conn, int monitor_idx);
|
|
void adv_monitor_remove_monitor(DBusConnection *conn, int monitor_idx);
|
|
void adv_monitor_get_supported_info(void);
|