summaryrefslogtreecommitdiff
path: root/app/include/drivers/behavior.h
diff options
context:
space:
mode:
Diffstat (limited to 'app/include/drivers/behavior.h')
-rw-r--r--app/include/drivers/behavior.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/app/include/drivers/behavior.h b/app/include/drivers/behavior.h
index 2bdffea..fcb24f6 100644
--- a/app/include/drivers/behavior.h
+++ b/app/include/drivers/behavior.h
@@ -8,6 +8,8 @@
#include <zephyr/types.h>
#include <stddef.h>
+#include <sys/util.h>
+#include <string.h>
#include <device.h>
#include <zmk/keys.h>
#include <zmk/behavior.h>
@@ -26,7 +28,14 @@ typedef int (*behavior_sensor_keymap_binding_callback_t)(struct zmk_behavior_bin
const struct device *sensor,
int64_t timestamp);
+enum behavior_locality {
+ BEHAVIOR_LOCALITY_CENTRAL,
+ BEHAVIOR_LOCALITY_EVENT_SOURCE,
+ BEHAVIOR_LOCALITY_GLOBAL
+};
+
__subsystem struct behavior_driver_api {
+ enum behavior_locality locality;
behavior_keymap_binding_callback_t binding_convert_central_state_dependent_params;
behavior_keymap_binding_callback_t binding_pressed;
behavior_keymap_binding_callback_t binding_released;
@@ -61,6 +70,28 @@ static inline int z_impl_behavior_keymap_binding_convert_central_state_dependent
}
/**
+ * @brief Determine where the behavior should be run
+ * @param behavior Pointer to the device structure for the driver instance.
+ *
+ * @retval Zero if successful.
+ * @retval Negative errno code if failure.
+ */
+__syscall int behavior_get_locality(const struct device *behavior,
+ enum behavior_locality *locality);
+
+static inline int z_impl_behavior_get_locality(const struct device *behavior,
+ enum behavior_locality *locality) {
+ if (behavior == NULL) {
+ return -EINVAL;
+ }
+
+ const struct behavior_driver_api *api = (const struct behavior_driver_api *)behavior->api;
+ *locality = api->locality;
+
+ return 0;
+}
+
+/**
* @brief Handle the keymap binding being pressed
* @param dev Pointer to the device structure for the driver instance.
* @param param1 User parameter specified at time of behavior binding.
@@ -75,6 +106,11 @@ __syscall int behavior_keymap_binding_pressed(struct zmk_behavior_binding *bindi
static inline int z_impl_behavior_keymap_binding_pressed(struct zmk_behavior_binding *binding,
struct zmk_behavior_binding_event event) {
const struct device *dev = device_get_binding(binding->behavior_dev);
+
+ if (dev == NULL) {
+ return -EINVAL;
+ }
+
const struct behavior_driver_api *api = (const struct behavior_driver_api *)dev->api;
if (api->binding_pressed == NULL) {
@@ -98,6 +134,11 @@ __syscall int behavior_keymap_binding_released(struct zmk_behavior_binding *bind
static inline int z_impl_behavior_keymap_binding_released(struct zmk_behavior_binding *binding,
struct zmk_behavior_binding_event event) {
const struct device *dev = device_get_binding(binding->behavior_dev);
+
+ if (dev == NULL) {
+ return -EINVAL;
+ }
+
const struct behavior_driver_api *api = (const struct behavior_driver_api *)dev->api;
if (api->binding_released == NULL) {
@@ -125,6 +166,11 @@ static inline int
z_impl_behavior_sensor_keymap_binding_triggered(struct zmk_behavior_binding *binding,
const struct device *sensor, int64_t timestamp) {
const struct device *dev = device_get_binding(binding->behavior_dev);
+
+ if (dev == NULL) {
+ return -EINVAL;
+ }
+
const struct behavior_driver_api *api = (const struct behavior_driver_api *)dev->api;
if (api->sensor_binding_triggered == NULL) {