-
Notifications
You must be signed in to change notification settings - Fork 4
/
Kconfig
31 lines (29 loc) · 865 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
source "Kconfig.zephyr"
# Sample app config vars
config LED_FLASH_DURATION_MS
int
default 60
config SYSEX_TX_TEST_MSG_CABLE_NUM
int "Cable number to use for sysex test messages"
default 0
config SYSEX_TX_TEST_MSG_SIZE
int "Size in bytes of outgoing sysex test messages"
default 170000
config SYSEX_ECHO_ENABLED
bool "Echo incoming sysex messages?"
default n
config SYSEX_ECHO_MAX_LENGTH
int "Echo at most this many bytes of incoming sysex messages (last byte of truncated messages is replaced with 0xf7)"
default 65536
config TX_PERIODIC_NOTE_ENABLED
bool "Send note on/off periodically?"
default y
config TX_PERIODIC_NOTE_INTERVAL_MS
int
default 500
config TX_PERIODIC_NOTE_NUMBER
int
default 69
config TX_PERIODIC_NOTE_VELOCITY
int
default 127