forked from privara/ir-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
40 lines (32 loc) · 837 Bytes
/
Kconfig
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
# Copyright (c) 2022 Jan Privara
# SPDX-License-Identifier: Apache-2.0
menu "Zephyr"
source "Kconfig.zephyr"
endmenu
menu "IR-TOOL"
config IR_BUF_SIZE
int "Size of the IR samples buffer [samples]"
default 256
config PRINT_RECV_CMDS
bool "Print details (timing) of received commands"
default y
config ADJUST_TRANSMIT_PULSE
int "Adjustment of transmitted pulse duration [usec]"
range -100 100
default 50
config ADJUST_TRANSMIT_SPACE
int "Adjustment of transmitted space duration [usec]"
range -100 100
default -50
config ADJUST_RECEIVE_PULSE
int "Adjustment of received pulse duration [usec]"
range -100 100
default 0
config ADJUST_RECEIVE_SPACE
int "Adjustment of received space duration [usec]"
range -100 100
default 0
endmenu
module = APP
module-str = app
source "subsys/logging/Kconfig.template.log_config"