mirror of
https://github.com/zmkfirmware/zmk.git
synced 2026-03-20 04:55:20 -05:00
Testing: split ble encoder test (#2754)
test(sensors): Add mock encoder sensor Add a new mock sensor driver for generating mock encoder sensor channel data. test(split): Add a peripheral sensor split test Test BLE split logic for peripheral sensors (encoders).
This commit is contained in:
1
app/tests/ble/split/peripheral-encoder/events.patterns
Normal file
1
app/tests/ble/split/peripheral-encoder/events.patterns
Normal file
@@ -0,0 +1 @@
|
||||
s/^d_02: @[0-9][0-9]:[0-9][0-9]:[0-9][0-9].[0-9][0-9][0-9][0-9][0-9][0-9] .{19}/profile 0 /p
|
||||
2
app/tests/ble/split/peripheral-encoder/nrf52_bsim.conf
Normal file
2
app/tests/ble/split/peripheral-encoder/nrf52_bsim.conf
Normal file
@@ -0,0 +1,2 @@
|
||||
CONFIG_ZMK_SPLIT=y
|
||||
CONFIG_SENSOR=y
|
||||
23
app/tests/ble/split/peripheral-encoder/nrf52_bsim.keymap
Normal file
23
app/tests/ble/split/peripheral-encoder/nrf52_bsim.keymap
Normal file
@@ -0,0 +1,23 @@
|
||||
#include <behaviors.dtsi>
|
||||
#include <dt-bindings/zmk/bt.h>
|
||||
#include <dt-bindings/zmk/keys.h>
|
||||
|
||||
#include "shared.dtsi"
|
||||
|
||||
&kscan {
|
||||
/delete-property/ exit-after;
|
||||
events = <>;
|
||||
};
|
||||
/ {
|
||||
keymap {
|
||||
compatible = "zmk,keymap";
|
||||
|
||||
default_layer {
|
||||
bindings = <
|
||||
&kp A &kp B
|
||||
&bt BT_SEL 0 &bt BT_CLR>;
|
||||
|
||||
sensor-bindings = <&inc_dec_kp A B>;
|
||||
};
|
||||
};
|
||||
};
|
||||
18
app/tests/ble/split/peripheral-encoder/peripheral.overlay
Normal file
18
app/tests/ble/split/peripheral-encoder/peripheral.overlay
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
#include <dt-bindings/zmk/kscan_mock.h>
|
||||
|
||||
#include "shared.dtsi"
|
||||
|
||||
&kscan {
|
||||
events = <>;
|
||||
|
||||
/delete-property/ exit-after;
|
||||
};
|
||||
|
||||
&mock_encoder {
|
||||
status = "okay";
|
||||
|
||||
event-startup-delay = <2000>;
|
||||
event-period = <2000>;
|
||||
events = <18 (-18)>;
|
||||
};
|
||||
12
app/tests/ble/split/peripheral-encoder/shared.dtsi
Normal file
12
app/tests/ble/split/peripheral-encoder/shared.dtsi
Normal file
@@ -0,0 +1,12 @@
|
||||
/ {
|
||||
mock_encoder: mock_encoder {
|
||||
compatible = "zmk,sensor-encoder-mock";
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
sensors: sensors {
|
||||
compatible = "zmk,keymap-sensors";
|
||||
sensors = <&mock_encoder>;
|
||||
triggers-per-rotation = <20>;
|
||||
};
|
||||
};
|
||||
2
app/tests/ble/split/peripheral-encoder/siblings.txt
Normal file
2
app/tests/ble/split/peripheral-encoder/siblings.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
./ble_test_central.exe -d=2
|
||||
./tests_ble_split_peripheral-encoder_peripheral.exe -d=3
|
||||
23
app/tests/ble/split/peripheral-encoder/snapshot.log
Normal file
23
app/tests/ble/split/peripheral-encoder/snapshot.log
Normal file
@@ -0,0 +1,23 @@
|
||||
profile 0 <wrn> bt_id: No static addresses stored in controller
|
||||
profile 0 <dbg> ble_central: main: [Bluetooth initialized]
|
||||
profile 0 <dbg> ble_central: start_scan: [Scanning successfully started]
|
||||
profile 0 <dbg> ble_central: device_found: [DEVICE]: FD:9E:B2:48:47:39 (random), AD evt type 0, AD data len 15, RSSI -56
|
||||
profile 0 <dbg> ble_central: eir_found: [AD]: 25 data_len 2
|
||||
profile 0 <dbg> ble_central: eir_found: [AD]: 1 data_len 1
|
||||
profile 0 <dbg> ble_central: eir_found: [AD]: 2 data_len 4
|
||||
profile 0 <dbg> ble_central: connected: [Connected]: FD:9E:B2:48:47:39 (random)
|
||||
profile 0 <dbg> ble_central: connected: [Setting the security for the connection]
|
||||
profile 0 <dbg> ble_central: pairing_complete: Pairing complete
|
||||
profile 0 <dbg> ble_central: discover_conn: [Discovery started for conn]
|
||||
profile 0 <dbg> ble_central: discover_func: [ATTRIBUTE] handle 23
|
||||
profile 0 <dbg> ble_central: discover_func: [ATTRIBUTE] handle 28
|
||||
profile 0 <dbg> ble_central: discover_func: [ATTRIBUTE] handle 30
|
||||
profile 0 <dbg> ble_central: discover_func: [SUBSCRIBED]
|
||||
profile 0 <dbg> ble_central: notify_func: payload
|
||||
profile 0 00 00 04 00 00 00 00 00 |........
|
||||
profile 0 <dbg> ble_central: notify_func: payload
|
||||
profile 0 00 00 00 00 00 00 00 00 |........
|
||||
profile 0 <dbg> ble_central: notify_func: payload
|
||||
profile 0 00 00 05 00 00 00 00 00 |........
|
||||
profile 0 <dbg> ble_central: notify_func: payload
|
||||
profile 0 00 00 00 00 00 00 00 00 |........
|
||||
Reference in New Issue
Block a user