Skip to content

Commit dff7aaf

Browse files
committed
feat(split): add peripheral changed event on central
Add a new event for when any peripheral connects or disconnects from the central
1 parent d0016b3 commit dff7aaf

File tree

5 files changed

+53
-8
lines changed

5 files changed

+53
-8
lines changed

app/CMakeLists.txt

+7-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,13 @@ target_sources_ifdef(CONFIG_ZMK_BATTERY_REPORTING app PRIVATE src/battery.c)
9595

9696
target_sources_ifdef(CONFIG_ZMK_HID_INDICATORS app PRIVATE src/events/hid_indicators_changed.c)
9797

98-
target_sources_ifdef(CONFIG_ZMK_SPLIT app PRIVATE src/events/split_peripheral_status_changed.c)
98+
if (CONFIG_ZMK_SPLIT)
99+
if(CONFIG_ZMK_SPLIT_ROLE_CENTRAL)
100+
target_sources(app PRIVATE src/events/split_central_peripheral_status_changed.c)
101+
else()
102+
target_sources(app PRIVATE src/events/split_peripheral_status_changed.c)
103+
endif()
104+
endif()
99105
add_subdirectory(src/split)
100106

101107
target_sources_ifdef(CONFIG_USB_DEVICE_STACK app PRIVATE src/usb.c)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
* Copyright (c) 2024 The ZMK Contributors
3+
*
4+
* SPDX-License-Identifier: MIT
5+
*/
6+
7+
#pragma once
8+
9+
#include <zephyr/kernel.h>
10+
#include <zmk/event_manager.h>
11+
#include <zmk/split/bluetooth/central.h>
12+
13+
struct zmk_split_central_peripheral_status_changed {
14+
enum zmk_split_bt_central_peripheral_source_state state;
15+
uint8_t slot;
16+
};
17+
18+
ZMK_EVENT_DECLARE(zmk_split_central_peripheral_status_changed);

app/include/zmk/split/bluetooth/central.h

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
#include <zephyr/bluetooth/addr.h>
55
#include <zmk/behavior.h>
66

7+
enum zmk_split_bt_central_peripheral_source_state {
8+
PERIPHERAL_SLOT_STATE_OPEN,
9+
PERIPHERAL_SLOT_STATE_CONNECTING,
10+
PERIPHERAL_SLOT_STATE_CONNECTED,
11+
};
12+
713
#if IS_ENABLED(CONFIG_ZMK_SPLIT_PERIPHERAL_HID_INDICATORS)
814
#include <zmk/hid_indicators_types.h>
915
#endif // IS_ENABLED(CONFIG_ZMK_SPLIT_PERIPHERAL_HID_INDICATORS)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*
2+
* Copyright (c) 2024 The ZMK Contributors
3+
*
4+
* SPDX-License-Identifier: MIT
5+
*/
6+
7+
#include <zephyr/kernel.h>
8+
#include <zmk/events/split_central_peripheral_status_changed.h>
9+
10+
ZMK_EVENT_IMPL(zmk_split_central_peripheral_status_changed);

app/src/split/bluetooth/central.c

+12-7
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@ LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL);
2525
#include <zmk/sensors.h>
2626
#include <zmk/split/bluetooth/uuid.h>
2727
#include <zmk/split/bluetooth/service.h>
28+
#include <zmk/split/bluetooth/central.h>
2829
#include <zmk/event_manager.h>
2930
#include <zmk/events/position_state_changed.h>
3031
#include <zmk/events/sensor_event.h>
3132
#include <zmk/events/battery_state_changed.h>
33+
#include <zmk/events/split_central_peripheral_status_changed.h>
3234
#include <zmk/pointing/input_split.h>
3335
#include <zmk/hid_indicators_types.h>
3436
#include <zmk/physical_layouts.h>
@@ -37,14 +39,8 @@ static int start_scanning(void);
3739

3840
#define POSITION_STATE_DATA_LEN 16
3941

40-
enum peripheral_slot_state {
41-
PERIPHERAL_SLOT_STATE_OPEN,
42-
PERIPHERAL_SLOT_STATE_CONNECTING,
43-
PERIPHERAL_SLOT_STATE_CONNECTED,
44-
};
45-
4642
struct peripheral_slot {
47-
enum peripheral_slot_state state;
43+
enum zmk_split_bt_central_peripheral_source_state state;
4844
struct bt_conn *conn;
4945
struct bt_gatt_discover_params discover_params;
5046
struct bt_gatt_subscribe_params subscribe_params;
@@ -965,6 +961,10 @@ static void split_central_connected(struct bt_conn *conn, uint8_t conn_err) {
965961

966962
confirm_peripheral_slot_conn(conn);
967963
split_central_process_connection(conn);
964+
raise_zmk_split_central_peripheral_status_changed(
965+
(struct zmk_split_central_peripheral_status_changed){
966+
.state = peripherals[peripheral_slot_index_for_conn(conn)].state,
967+
.slot = peripheral_slot_index_for_conn(conn)});
968968
}
969969

970970
static void split_central_disconnected(struct bt_conn *conn, uint8_t reason) {
@@ -988,6 +988,11 @@ static void split_central_disconnected(struct bt_conn *conn, uint8_t reason) {
988988

989989
err = release_peripheral_slot_for_conn(conn);
990990

991+
raise_zmk_split_central_peripheral_status_changed(
992+
(struct zmk_split_central_peripheral_status_changed){
993+
.state = peripherals[peripheral_slot_index_for_conn(conn)].state,
994+
.slot = peripheral_slot_index_for_conn(conn)});
995+
991996
if (err < 0) {
992997
return;
993998
}

0 commit comments

Comments
 (0)