-
Notifications
You must be signed in to change notification settings - Fork 16
/
Kconfig.projbuild
58 lines (46 loc) · 1.18 KB
/
Kconfig.projbuild
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
menu "E-Paper display configuration"
choice
prompt "Display Type"
default EPD_1_54_V2
help
"Select waveshare's epaper display to be used"
config EPD_1_54_V2
bool "1.54\" V2 Display Module"
config EPD_2_13_D
bool "2.13\" D Display"
config EPD_2_66
bool "2.66\" Display"
config EPD_2_7
bool "2.7\" Display"
endchoice
config MOSI_PIN
int "DATAIN (MOSI/DIN) Pin number"
default 14
help
set the pin to be connected to mosi/din pin of display
config CLK_PIN
int "CLOCK (CLK/SCK) Pin number"
default 13
help
set the pin to be connected to clk/sck pin of display
config CS_PIN
int "CHIPSELECT (CS) Pin number"
default 15
help
set the pin to be connected to cs pin of display
config DC_PIN
int "DATA/COMMAND (DC) Pin number"
default 27
help
set the pin to be connected to dc pin of display
config RST_PIN
int "RESET (RST) Pin number"
default 26
help
set the pin to be connected to rst pin of display
config BUSY_PIN
int "BUSY (BUSY) Pin number"
default 25
help
set the pin to be connected to busy pin of display
endmenu