forked from maximkulkin/esp-homekit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKconfig
29 lines (24 loc) · 828 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
menu "HomeKit"
config HOMEKIT_SPI_FLASH_BASE_ADDR
string "SPI flash address for storing HomeKit data"
default 0x200000
help
SPI flash address to store HomeKit related persisted data
config HOMEKIT_MAX_CLIENTS
int "Maximum number of simultaneous clients"
default 16
help
Maximum number of simultaneous clients allowed. New connections above this
limit will be rejected. Each connection requires ~1100-1200 bytes of RAM
config HOMEKIT_SMALL
bool "Minimize firmware size"
default n
help
Configures components to use smaller (but slower) implementations. Helps
decrease firmware size ~70KB at cost of increasing pair verify time
config HOMEKIT_DEBUG
bool "Debug output"
default n
help
Enable debug output to serial console
endmenu