-
Notifications
You must be signed in to change notification settings - Fork 352
Expand file tree
/
Copy pathKconfig
More file actions
32 lines (23 loc) · 754 Bytes
/
Kconfig
File metadata and controls
32 lines (23 loc) · 754 Bytes
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
# Kconfig file for package am2320
menuconfig PKG_USING_AM2320
bool "digital humidity and temperature sensor am2320 driver library."
default n
if PKG_USING_AM2320
config PKG_AM2320_PATH
string
default "/packages/peripherals/sensors/am2320"
choice
prompt "Version"
default PKG_USING_AM2320_LATEST_VERSION
help
Select the package version
config PKG_USING_AM2320_V001
bool "v0.0.1"
config PKG_USING_AM2320_LATEST_VERSION
bool "latest"
endchoice
config PKG_AM2320_VER
string
default "v0.0.1" if PKG_USING_AM2320_V001
default "latest" if PKG_USING_AM2320_LATEST_VERSION
endif