summaryrefslogtreecommitdiff
path: root/app/include/drivers/behavior.h
blob: cca9272a857c720430241ef9a998d87f2d019cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
/*
 * Copyright (c) 2020 Peter Johanson
 *
 * SPDX-License-Identifier: MIT
 */

#pragma once

#include <zephyr/types.h>
#include <stddef.h>
#include <device.h>
#include <zmk/keys.h>

#ifdef __cplusplus
extern "C" {
#endif

/**
 * @cond INTERNAL_HIDDEN
 *
 * Behavior driver API definition and system call entry points.
 *
 * (Internal use only.)
 */

typedef int (*behavior_position_callback_t)(struct device *dev, u32_t position);
typedef int (*behavior_keymap_binding_callback_t)(struct device *dev, u32_t position, u32_t param1, u32_t param2);
typedef int (*behavior_keycode_callback_t)(struct device *dev, u8_t usage_page, u32_t keycode);
typedef int (*behavior_modifiers_callback_t)(struct device *dev, zmk_mod_flags modifiers);

__subsystem struct behavior_driver_api {
	behavior_position_callback_t position_pressed;
	behavior_position_callback_t position_released;
	behavior_keymap_binding_callback_t binding_pressed;
	behavior_keymap_binding_callback_t binding_released;
	behavior_keycode_callback_t keycode_pressed;
	behavior_keycode_callback_t keycode_released;
	behavior_modifiers_callback_t modifiers_pressed;
	behavior_modifiers_callback_t modifiers_released;
};
/**
 * @endcond
 */

/**
 * @brief Handle the key position being pressed
 * @param dev Pointer to the device structure for the driver instance.
 * @param position They key position that was pressed
 *
 * @retval 0 If successful.
 * @retval Negative errno code if failure.
 */
__syscall int behavior_position_pressed(struct device *dev, u32_t position);

static inline int z_impl_behavior_position_pressed(struct device *dev, u32_t position)
{
	const struct behavior_driver_api *api =
			(const struct behavior_driver_api *)dev->driver_api;

	if (api->position_pressed == NULL) {
		return -ENOTSUP;
	}

	return api->position_pressed(dev, position);
}

/**
 * @brief Handle the key position being released
 * @param dev Pointer to the device structure for the driver instance.
 * @param position They key position that was released
 *
 * @retval 0 If successful.
 * @retval Negative errno code if failure.
 */
__syscall int behavior_position_released(struct device *dev, u32_t position);

static inline int z_impl_behavior_position_released(struct device *dev, u32_t position)
{
	const struct behavior_driver_api *api =
			(const struct behavior_driver_api *)dev->driver_api;

	if (api->position_released == NULL) {
		return -ENOTSUP;
	}

	return api->position_released(dev, position);
}

/**
 * @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.
 * @param param2 User parameter specified at time of behavior binding.
 *
 * @retval 0 If successful.
 * @retval Negative errno code if failure.
 */
__syscall int behavior_keymap_binding_pressed(struct device *dev, u32_t position, u32_t param1, u32_t param2);

static inline int z_impl_behavior_keymap_binding_pressed(struct device *dev, u32_t position, u32_t param1, u32_t param2)
{
	const struct behavior_driver_api *api =
			(const struct behavior_driver_api *)dev->driver_api;

	if (api->binding_pressed == NULL) {
		return -ENOTSUP;
	}

	return api->binding_pressed(dev, position, param1, param2);
}

/**
 * @brief Handle the assigned position being pressed
 * @param dev Pointer to the device structure for the driver instance.
 * @param param1 User parameter specified at time of behavior assignment.
 *
 * @retval 0 If successful.
 * @retval Negative errno code if failure.
 */
__syscall int behavior_keymap_binding_released(struct device *dev, u32_t position, u32_t param1, u32_t param2);

static inline int z_impl_behavior_keymap_binding_released(struct device *dev, u32_t position, u32_t param1, u32_t param2)
{
	const struct behavior_driver_api *api =
			(const struct behavior_driver_api *)dev->driver_api;

	if (api->binding_released == NULL) {
		return -ENOTSUP;
	}

	return api->binding_released(dev, position, param1, param2);
}


/**
 * @brief Handle the keycode being pressed
 * @param dev Pointer to the device structure for the driver instance.
 * @param usage_page The usage page for the keycode.
 * @param keycode The keycode that is being pressed.
 *
 * @retval 0 If successful.
 * @retval Negative errno code if failure.
 */
__syscall int behavior_keycode_pressed(struct device *dev, u8_t usage_page, u32_t keycode);

static inline int z_impl_behavior_keycode_pressed(struct device *dev, u8_t usage_page, u32_t keycode)
{
	const struct behavior_driver_api *api =
			(const struct behavior_driver_api *)dev->driver_api;

	if (api->keycode_pressed == NULL) {
		return -ENOTSUP;
	}

	return api->keycode_pressed(dev, usage_page, keycode);
}


/**
 * @brief Handle the keycode being released
 * @param dev Pointer to the device structure for the driver instance.
 * @param usage_page The usage page for the keycode.
 * @param keycode The keycode that is being pressed.
 *
 * @retval 0 If successful.
 * @retval Negative errno code if failure.
 */
__syscall int behavior_keycode_released(struct device *dev, u8_t usage_page, u32_t keycode);

static inline int z_impl_behavior_keycode_released(struct device *dev, u8_t usage_page, u32_t keycode)
{
	const struct behavior_driver_api *api =
			(const struct behavior_driver_api *)dev->driver_api;

	if (api->keycode_released == NULL) {
		return -ENOTSUP;
	}

	return api->keycode_released(dev, usage_page, keycode);
}


/**
 * @brief Handle the keycode being pressed
 * @param dev Pointer to the device structure for the driver instance.
 * @param keycode The keycode that is being pressed.
 *
 * @retval 0 If successful.
 * @retval Negative errno code if failure.
 */
__syscall int behavior_modifiers_pressed(struct device *dev, zmk_mod_flags modifiers);

static inline int z_impl_behavior_modifiers_pressed(struct device *dev, zmk_mod_flags modifiers)
{
	const struct behavior_driver_api *api =
			(const struct behavior_driver_api *)dev->driver_api;

	if (api->modifiers_pressed == NULL) {
		return -ENOTSUP;
	}

	return api->modifiers_pressed(dev, modifiers);
}


/**
 * @brief Handle the keycode being released
 * @param dev Pointer to the device structure for the driver instance.
 * @param keycode The keycode that is being pressed.
 *
 * @retval 0 If successful.
 * @retval Negative errno code if failure.
 */
__syscall int behavior_modifiers_released(struct device *dev, zmk_mod_flags modifiers);

static inline int z_impl_behavior_modifiers_released(struct device *dev, zmk_mod_flags modifiers)
{
	const struct behavior_driver_api *api =
			(const struct behavior_driver_api *)dev->driver_api;

	if (api->modifiers_released == NULL) {
		return -ENOTSUP;
	}

	return api->modifiers_released(dev, modifiers);
}

#ifdef __cplusplus
}
#endif

/**
 * @}
 */

#include <syscalls/behavior.h>