-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Kconfig
33 lines (27 loc) · 888 Bytes
/
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
menu "Github OTA Configuration"
config MAX_FILENAME_LEN
int "The Max Size Of Filenames"
default 64
help
The Maximum Size of Filenames stored at the Repository
config MAX_URL_LEN
int "The Max Size Of URLs"
default 128
help
The Maximum Size of URl's to download Firmware Files
config GITHUB_HOSTNAME
string "The Hostname of the Github Repository"
default "api.github.com"
help
The Hostname of the Github API Server
config GITHUB_OWNER
string "The Owner of the Github Repository"
default "Fishwaldo"
help
The Owner of the Github Repository
config GITHUB_REPO
string "The Repository of the Github Repository"
default "esp_ghota"
help
The Repository of the Github Repository
endmenu