forked from SlimeVR/SlimeVR-Tracker-nRF-Receiver
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathKconfig
More file actions
130 lines (109 loc) · 3.08 KB
/
Copy pathKconfig
File metadata and controls
130 lines (109 loc) · 3.08 KB
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
#
# Copyright (c) 2020 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
choice
prompt "Status LED color mapping"
default LED_TRI_COLOR
config LED_RGB_COLOR
bool "Use RGB color mapping"
help
Use RGB or RG color mapping for LED status if available.
config LED_TRI_COLOR
bool "Use default color mapping"
help
Use the default color mapping for LED status.
endchoice
menu "Status LED default status color"
depends on LED_RGB_COLOR
config LED_DEFAULT_COLOR_R
int "Red value"
range 0 10000
default 4000
depends on LED_RGB_COLOR
help
Red color for default status.
Valid range is 0 to 10000.
config LED_DEFAULT_COLOR_G
int "Green value"
range 0 10000
default 6000
depends on LED_RGB_COLOR
help
Green color for default status.
Valid range is 0 to 10000.
config LED_DEFAULT_COLOR_B
int "Blue value"
range 0 10000
default 0
depends on LED_RGB_COLOR
help
Blue color for default status.
Valid range is 0 to 10000.
endmenu
config RADIO_TX_POWER
int "Radio output power (dBm)"
default 30
help
Radio output power level.
A lower value may reduce power consumption.
config RADIO_RF_CHANNEL
int "Radio RF channel"
default 2
help
Radio RF channel (0-100).
Must match the receiver channel.
config RADIO_RETRANSMIT_DELAY
int "Radio retransmit delay (µs)"
default 600
help
Radio retransmit delay.
config PAIRING_TIMEOUT
int "Pairing mode timeout (seconds)"
default 300
help
Timeout for pairing mode in seconds.
After this time, pairing mode will automatically exit.
Default is 300 seconds (5 minutes).
Set to 0 to disable timeout.
config DATA_COLLECT
bool "Enable raw sensor data collection interface"
default n
help
Enable streaming raw IMU and magnetometer data from trackers.
Choose HID or CDC transport via DATA_COLLECT_HID.
config DATA_COLLECT_HID
bool "Use HID endpoint for data collection (instead of CDC serial)"
depends on DATA_COLLECT
default y
help
When enabled, raw data is sent via a dedicated HID endpoint.
When disabled, raw data is sent via a second CDC ACM serial port.
config SLIMEVR_USB_DEVICE_VID
hex "SlimeVR USB vendor ID"
default 0x1209
help
USB vendor ID used by the SlimeVR USBD_NEXT device.
config SLIMEVR_USB_DEVICE_PID
hex "SlimeVR USB product ID"
default 0x7690
help
USB product ID used by the SlimeVR receiver firmware.
config SLIMEVR_USB_DEVICE_MANUFACTURER
string "SlimeVR USB manufacturer"
default "SlimeVR"
help
USB manufacturer string and console banner prefix.
config SLIMEVR_USB_DEVICE_PRODUCT
string "SlimeVR USB product"
default "SlimeNRF Receiver"
help
USB product string and console banner name.
config SLIMEVR_USB_DEVICE_MAX_POWER
int "SlimeVR USB max power"
range 0 250
default 100
help
USB bMaxPower value in 2 mA units.
source "Kconfig.zephyr"