-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathKconfig.projbuild
More file actions
108 lines (85 loc) · 2.51 KB
/
Kconfig.projbuild
File metadata and controls
108 lines (85 loc) · 2.51 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
menu "Application Configuration"
config NO_FAST_FUNCTIONS
bool "Disable Fast Functions"
default n
help
Disable fast function optimizations.
config SWAP_COLORS
bool "Swap Colors"
default n
help
Swap RGB colors.
config NO_INVERT_CLOCK_PHASE
bool "No Invert Clock Phase"
default n
help
Do not invert clock phase. Required for some display panels (e.g., Tidbyt Gen2).
config REFRESH_INTERVAL_SECONDS
int "Default Refresh Interval (seconds)"
default 10
help
Default time to show an app/image before refreshing.
config ENABLE_AP_MODE
bool "Enable AP Mode"
default y
help
Enable WiFi Access Point mode for configuration when connection fails.
config ENABLE_WIFI_POWER_SAVE
bool "Enable WiFi Power Save"
default n
help
Enable WiFi minimum modem power saving mode.
config SKIP_DISPLAY_VERSION
bool "Skip Display Version"
default n
help
Skip displaying the firmware version on boot.
config PREFER_IPV6
bool "Prefer IPv6"
default n
help
Prefer IPv6 for connections.
config HTTP_BUFFER_SIZE_MAX
int "Max HTTP Buffer Size"
default 460000
help
Maximum size of the HTTP buffer.
config HTTP_BUFFER_SIZE_DEFAULT
int "Default HTTP Buffer Size"
default 100000
help
Default size of the HTTP buffer.
choice BOOT_ANIMATION
prompt "Boot Animation"
default BOOT_WEBP_TRONBYT
config BOOT_WEBP_TRONBYT
bool "Tronbyt"
config BOOT_WEBP_WINDYTRON
bool "Windytron"
config BOOT_WEBP_PARROT
bool "Parrot"
endchoice
choice BOARD_TYPE
prompt "Board Type"
default BOARD_TIDBYT_GEN1
help
Select the hardware board type.
config BOARD_TIDBYT_GEN1
bool "Tidbyt Gen 1"
config BOARD_TIDBYT_GEN2
bool "Tidbyt Gen 2"
config BOARD_TRONBYT_S3
bool "Tronbyt S3"
config BOARD_TRONBYT_S3_WIDE
bool "Tronbyt S3 Wide"
config BOARD_PIXOTICKER
bool "Pixoticker"
config BOARD_MATRIXPORTAL_S3
bool "MatrixPortal S3"
endchoice
config BUTTON_PIN
int "Button Pin"
default -1
help
GPIO pin for the button.
endmenu