-
Notifications
You must be signed in to change notification settings - Fork 4
/
Kconfig
38 lines (34 loc) · 1.09 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
menu "Menu8g2 Config"
config MENU8G2_INDICATOR
string
prompt "prefix to apply for address data"
default " > "
help
Prepended to selected menu option
config MENU8G2_BORDER_SIZE
int
prompt "Blank boudary around options"
default 1
help
help text here
config MENU8G2_LINE_BUFFER_LEN
int
prompt "Buffer size for a single line string on the display"
default 80
help
Should be at least as wide as your screen is capable of displaying
choice
prompt "Select Menu Header Justification"
config MENU8G2_HEADER_CENTER_JUST
bool "Header String is Centered"
config MENU8G2_HEADER_LEFT_JUST
bool "Header String is Left Justified"
endchoice
choice
prompt "Select U8G2 Buffer Method"
config MENU8G2_BUFFER_FULL
bool "Full Buffer Method (fast, high ram, allows screen saves)"
config MENU8G2_BUFFER_PAGE
bool "Paged Buffer (slow, low ram, no screen saves)"
endchoice
endmenu