-
Notifications
You must be signed in to change notification settings - Fork 11
/
Kconfig
89 lines (70 loc) · 1.88 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
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
menu "SolarSystem web control"
menu "MQTT"
config MQTT_HOSTNAME
string "MQTT hostname - needs to match domain name for certificates to work"
default ""
help
Set the hostname used for your server
config MQTT_PORT
string "MQTT TCP port (name or number)"
default "8883"
help
The TCP port you listen to
config MQTT_INSECURE_PORT
string "MQTT TCP port (name or number) for initial insecure connection"
default "1883"
help
The TCP port you listen to
config MQTT_IPV4
bool "MQTT Bind only to IPv4 "
endmenu
menu "SQL"
config SQL_SERVER_FILE
string "SQL config file for server user"
default ""
help
SQL connection configuration file for access to SS and SSKey databases
config SQL_WEBUSER_FILE
string "SQL config file for user (apache)"
default ""
help
SQL connection configuration file for access to SS database only
This should be the same as DB_CONF in login config
config SQL_DATABASE
string "SQL database"
default "SS"
help
SQL database name for main data
This should be the same as DB_DATABASE in login config
config SQL_KEY_DATABASE
string "SQL database"
default "SSKey"
help
SQL database name for AES keys
config SQL_DEBUG
bool "SQL debug"
default n
help
SQL debug
endmenu
config OTA_HOSTNAME
string "OTA hostname"
default "ota.revk.uk"
help
The default OTA host name for device upgrade
config KEYS_FILE
string "Filename for keys"
default "solarsystem.keys"
help
Filename for CA/MQTT keys
config MSG_KEY_FILE
string "Filename for internal messaging key"
default "message.keys"
help
Filename message command internal keys
config NFC_BAUD_CODE
int "NFC Baud rate code, 4 for default 115200"
default 4
help
NFC Baud code, 0-8 for 9600 to 1288000
endmenu