summaryrefslogtreecommitdiff
path: root/app/include/zmk/ble.h
diff options
context:
space:
mode:
authorPete Johanson <peter@peterjohanson.com>2020-09-01 23:22:30 -0400
committerPete Johanson <peter@peterjohanson.com>2020-09-13 22:33:05 -0400
commitfc0812bd2eb08d66819f38bafd1f5d00b933c87b (patch)
treea1c5bcc41b9bbc079828c4b64c45230b5f718411 /app/include/zmk/ble.h
parenta4d06f69ac9879618e91a9befac6f2e84ef37428 (diff)
fix(bluetooth): Remove identity, minimal `bt`.
* 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.
Diffstat (limited to 'app/include/zmk/ble.h')
-rw-r--r--app/include/zmk/ble.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/app/include/zmk/ble.h b/app/include/zmk/ble.h
index b3762cd..62d476e 100644
--- a/app/include/zmk/ble.h
+++ b/app/include/zmk/ble.h
@@ -9,13 +9,8 @@
#include <bluetooth/addr.h>
#include <zmk/keys.h>
-int zmk_ble_adv_pause();
-int zmk_ble_adv_resume();
-int zmk_ble_identity_clear();
-int zmk_ble_identity_next();
-int zmk_ble_identity_prev();
-int zmk_ble_identity_select(u8_t index);
+int zmk_ble_clear_bonds();
int zmk_ble_unpair_all();
bool zmk_ble_handle_key_user(struct zmk_key_event *key_event);