2020-09-09 13:26:00 +10:00
|
|
|
/*
|
2020-10-13 04:03:10 +11:00
|
|
|
* Copyright (c) 2020 The ZMK Contributors
|
2020-09-09 13:26:00 +10:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <bluetooth/addr.h>
|
|
|
|
|
|
|
|
#define ZMK_BLE_PROFILE_NAME_MAX 15
|
|
|
|
|
|
|
|
struct zmk_ble_profile {
|
|
|
|
char name[ZMK_BLE_PROFILE_NAME_MAX];
|
|
|
|
bt_addr_le_t peer;
|
|
|
|
};
|