forked from SKKU-ESLAB/ANT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
91 lines (74 loc) · 1.78 KB
/
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
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
mainmenu "ANT Framework Configuration"
# Target boards' type
choice
prompt "Target Board Type"
default TARGET_RASPBERRY_PI_3
help
Target board type decides which device driver it uses
config TARGET_RASPBERRY_PI_2
bool "Raspberry Pi 2"
help
Build ANT for Raspberry Pi 2
config TARGET_RASPBERRY_PI_3
bool "Raspberry Pi 3"
help
Build ANT for Raspberry Pi 3
config TARGET_TEGRA_TX1
bool "Tegra TX1"
help
Build ANT for Tegra TX1
config TARGET_TEGRA_TX2
bool "Tegra TX2"
help
Build ANT for Tegra TX2
config TARGET_ODROID_XU3
bool "ODROID XU3"
help
Build ANT for ODROID XU3
config TARGET_ODROID_XU4
bool "ODROID XU4"
help
Build ANT for ODROID XU4
config TARGET_OTHER
bool "Other Device"
help
Build ANT for other devices with virtual device drivers
endchoice
# Target device profile
# TODO: configurable WFD support
choice
prompt "Target Profile"
default PROFILE_CAMERA_BASED_SENSOR_DEVICE
config PROFILE_NORMAL_SENSOR_DEVICE
bool "Normal Sensor Device"
select SENSOR_FW
select COMM_FW
select COMM_BT_SUPPORT
select COMM_WFD_SUPPORT
help
Sensor device with several sensors
config PROFILE_CAMERA_BASED_SENSOR_DEVICE
bool "Camera-based Sensor Device"
select SENSOR_FW
select CAMERA_FW
select COMM_FW
select COMM_BT_SUPPORT
select COMM_WFD_SUPPORT
help
Sensor device with several sensors and cameras
config PROFILE_GATEWAY_DEVICE
bool "Gateway Device"
select GATEWAY_FW
select COMM_FW
select COMM_BT_SUPPORT
select COMM_WFD_SUPPORT
help
Gateway device without any sensors or cameras
endchoice
source "framework/Kconfig"
menu "JavaScript APIs"
source "api/Kconfig"
source "new-api/Kconfig"
endmenu
source "apps/Kconfig"
source "models/Kconfig"