-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathKconfig.projbuild
122 lines (108 loc) · 2.52 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
menu "Main configuration"
menu "Wifi Configuration"
config WIFI_SSID
string "Wifi SSID"
default "*******"
config WIFI_PASSWORD
string "Wifi password"
default "*******"
endmenu
menu "Camera configuration"
config XCLK_FREQ
int "XCLK Frequency"
default "20000000"
help
The XCLK Frequency in Herz.
config ESP32_SPIRAM_SUPPORT
bool "PSRAM support"
default n
help
PSRAM support for camera
menu "Pin Configuration"
config D0
int "D0"
default "5"
config D1
int "D1"
default "18"
config D2
int "D2"
default "19"
config D3
int "D3"
default "21"
config D4
int "D4"
default "36"
config D5
int "D5"
default "39"
config D6
int "D6"
default "34"
config D7
int "D7"
default "35"
config XCLK
int "XCLK"
default "0"
config PCLK
int "PCLK"
default "22"
config VSYNC
int "VSYNC"
default "25"
config HREF
int "HREF"
default "23"
config SDA
int "SDA"
default "26"
config SCL
int "SCL"
default "27"
config RESET
int "RESET"
default "-1"
config PWDN
int "PWDN"
default "32"
endmenu
config OV2640_SUPPORT
bool "OV2640 Support"
default y
help
Enable this option if you want to use the OV2640.
Disable this option to save memory.
config OV7725_SUPPORT
bool "OV7725 Support"
default n
help
Enable this option if you want to use the OV7725.
Disable this option to save memory.
config OV3660_SUPPORT
bool "OV3660 Support"
default n
help
Enable this option if you want to use the OV3360.
Disable this option to save memory.
config OV5640_SUPPORT
bool "OV5640 Support"
default n
help
Enable this option if you want to use the OV5640.
Disable this option to save memory.
choice CAMERA_TASK_PINNED_TO_CORE
bool "Camera task pinned to core"
default CAMERA_CORE0
help
Pin the camera handle task to a certain core(0/1). It can also be done automatically choosing NO_AFFINITY.
config CAMERA_CORE0
bool "CORE0"
config CAMERA_CORE1
bool "CORE1"
config CAMERA_NO_AFFINITY
bool "NO_AFFINITY"
endchoice
endmenu
endmenu