gatt.h 366 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: LGPL-2.1-or-later */
  2. /*
  3. *
  4. * BlueZ - Bluetooth protocol stack for Linux
  5. *
  6. * Copyright (C) 2015 Intel Corporation. All rights reserved.
  7. *
  8. *
  9. */
  10. #include <stdint.h>
  11. void gatt_set_static_address(uint8_t addr[6]);
  12. void gatt_set_device_name(uint8_t name[20], uint8_t len);
  13. void gatt_server_start(void);
  14. void gatt_server_stop(void);