fc0812bd2e
* Simplify the `bt` behavior to one current command `BT_CLEAR_BONDS_CMD`. * Simplify BLE code for split and non-split keyboards. * Remove keymap processing from split peripheral side.
20 lines
No EOL
432 B
C
20 lines
No EOL
432 B
C
/*
|
|
* Copyright (c) 2020 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <bluetooth/addr.h>
|
|
#include <zmk/keys.h>
|
|
|
|
|
|
int zmk_ble_clear_bonds();
|
|
|
|
int zmk_ble_unpair_all();
|
|
bool zmk_ble_handle_key_user(struct zmk_key_event *key_event);
|
|
|
|
#if IS_ENABLED(CONFIG_ZMK_SPLIT_BLE_ROLE_CENTRAL)
|
|
void zmk_ble_set_peripheral_addr(bt_addr_le_t *addr);
|
|
#endif /* IS_ENABLED(CONFIG_ZMK_SPLIT_BLE_ROLE_CENTRAL) */ |