forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig.trigger_template
44 lines (34 loc) · 1001 Bytes
/
Kconfig.trigger_template
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
# Common Kconfig template for all sensors
# Copyright (c) 2023 STMicroelectronics
# SPDX-License-Identifier: Apache-2.0
choice "$(module)_TRIGGER_MODE"
prompt "Trigger mode"
help
Specify the type of triggering to be used by the sensor module.
config $(module)_TRIGGER_NONE
bool "No trigger"
config $(module)_TRIGGER_GLOBAL_THREAD
bool "Use global thread"
depends on GPIO
select $(module)_TRIGGER
config $(module)_TRIGGER_OWN_THREAD
bool "Use own thread"
depends on GPIO
select $(module)_TRIGGER
endchoice
config $(module)_TRIGGER
bool
if $(module)_TRIGGER
config $(module)_THREAD_PRIORITY
int "Thread priority"
depends on $(module)_TRIGGER_OWN_THREAD
default $(thread_priority)
help
Priority of thread used by the driver to handle interrupts.
config $(module)_THREAD_STACK_SIZE
int "Thread stack size"
depends on $(module)_TRIGGER_OWN_THREAD
default $(thread_stack_size)
help
Stack size of thread used by the driver to handle interrupts.
endif # $(module)_TRIGGER