forked from kofal.net/zmk
feature(split): behavior locality support.
* GATT characteristic allowing passng data + behavior label to invoke the behavior on the peripheral side. * Behaviors have a locality setting to specify where they run. * Build reset/power/RGB on peripheral.
This commit is contained in:
@@ -8,10 +8,19 @@
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zmk/event_manager.h>
|
||||
#include <bluetooth/addr.h>
|
||||
|
||||
#if IS_ENABLED(CONFIG_ZMK_BLE)
|
||||
typedef const bt_addr_le_t *zmk_position_state_changed_source_t;
|
||||
#else
|
||||
typedef void *zmk_position_state_changed_source_t;
|
||||
#endif
|
||||
|
||||
struct zmk_position_state_changed {
|
||||
zmk_position_state_changed_source_t source;
|
||||
uint32_t position;
|
||||
bool state;
|
||||
int64_t timestamp;
|
||||
};
|
||||
|
||||
ZMK_EVENT_DECLARE(zmk_position_state_changed);
|
||||
ZMK_EVENT_DECLARE(zmk_position_state_changed);
|
||||
|
||||
Reference in New Issue
Block a user