-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathKconfig
57 lines (47 loc) · 1.52 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
menu "ATOMVM_M5 Configuration"
config AVM_M5_ENABLE
bool "Enable AtomVM M5 driver"
default y
help
Use this parameter to enable or disable the AtomVM M5 driver.
config AVM_M5_BTN_ENABLE
bool "Enable AtomVM M5 driver button API"
default y
help
Use this parameter to enable or disable the AtomVM M5 driver button API.
config AVM_M5_DISPLAY_ENABLE
bool "Enable AtomVM M5 driver display API"
default y
help
Use this parameter to enable or disable the AtomVM M5 driver display API.
config AVM_M5_POWER_ENABLE
bool "Enable AtomVM M5 driver power API"
default y
help
Use this parameter to enable or disable the AtomVM M5 driver power API.
config AVM_M5_POWER_AXP192_ENABLE
bool "Enable AtomVM M5 driver power AXP192 API"
default "y" if IDF_TARGET!="esp32c3" && IDF_TARGET!="esp32s3"
help
Use this parameter to enable or disable the AtomVM M5 driver power AXP192 API.
config AVM_M5_I2C_ENABLE
bool "Enable AtomVM M5 driver I2C API"
default y
help
Use this parameter to enable or disable the AtomVM M5 driver I2C API.
config AVM_M5_IMU_ENABLE
bool "Enable AtomVM M5 driver IMU API"
default y
help
Use this parameter to enable or disable the AtomVM M5 driver IMU API.
config AVM_M5_RTC_ENABLE
bool "Enable AtomVM M5 driver RTC API"
default y
help
Use this parameter to enable or disable the AtomVM M5 driver RTC API.
config AVM_M5_SPEAKER_ENABLE
bool "Enable AtomVM M5 driver speaker API"
default y
help
Use this parameter to enable or disable the AtomVM M5 driver speaker API.
endmenu