@@ -25,10 +25,12 @@ LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL);
25
25
#include <zmk/sensors.h>
26
26
#include <zmk/split/bluetooth/uuid.h>
27
27
#include <zmk/split/bluetooth/service.h>
28
+ #include <zmk/split/bluetooth/central.h>
28
29
#include <zmk/event_manager.h>
29
30
#include <zmk/events/position_state_changed.h>
30
31
#include <zmk/events/sensor_event.h>
31
32
#include <zmk/events/battery_state_changed.h>
33
+ #include <zmk/events/split_central_peripheral_status_changed.h>
32
34
#include <zmk/pointing/input_split.h>
33
35
#include <zmk/hid_indicators_types.h>
34
36
#include <zmk/physical_layouts.h>
@@ -37,14 +39,8 @@ static int start_scanning(void);
37
39
38
40
#define POSITION_STATE_DATA_LEN 16
39
41
40
- enum peripheral_slot_state {
41
- PERIPHERAL_SLOT_STATE_OPEN ,
42
- PERIPHERAL_SLOT_STATE_CONNECTING ,
43
- PERIPHERAL_SLOT_STATE_CONNECTED ,
44
- };
45
-
46
42
struct peripheral_slot {
47
- enum peripheral_slot_state state ;
43
+ enum zmk_split_bt_central_peripheral_source_state state ;
48
44
struct bt_conn * conn ;
49
45
struct bt_gatt_discover_params discover_params ;
50
46
struct bt_gatt_subscribe_params subscribe_params ;
@@ -965,6 +961,10 @@ static void split_central_connected(struct bt_conn *conn, uint8_t conn_err) {
965
961
966
962
confirm_peripheral_slot_conn (conn );
967
963
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 )});
968
968
}
969
969
970
970
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) {
988
988
989
989
err = release_peripheral_slot_for_conn (conn );
990
990
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
+
991
996
if (err < 0 ) {
992
997
return ;
993
998
}
0 commit comments