-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig.projbuild
59 lines (50 loc) · 936 Bytes
/
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
59
menu "Lepton Configuration"
config LEPTON_SDA_PIN
int "SDA pin"
range 0 50
default 3
help
The SDL pin for I2C connection.
config LEPTON_SCL_PIN
int "SCL pin"
range 0 50
default 4
help
The SCL pin for I2C connection.
config LEPTON_POWER_PIN
int "Power pin"
range 0 50
default 10
help
The power pin for camera.
config LEPTON_RESTART_TIME
int "Restart time"
range 0 10000
default 6000
help
Restart time when restarting via power pin.
config LEPTON_MOSI_PIN
int "MOSI pin"
range 0 50
default 35
help
The MOSI pin for VoSPI connection.
config LEPTON_MISO_PIN
int "MISO pin"
range 0 50
default 37
help
The MISO pin for VoSPI connection.
config LEPTON_CLK_PIN
int "Clock pin"
range 0 50
default 36
help
The CLK pin for VoSPI connection.
config LEPTON_CS_PIN
int "CS pin"
range 0 50
default 8
help
The CS pin for VoSPI connection.
endmenu