diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2018-06-03 12:39:57 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2018-06-03 12:39:57 +0200 |
commit | 934bbf7d019e561209802f6a679b3672ce58ef1a (patch) | |
tree | a558a8344aabfdf98d4a8bf0a1776bcc500bad39 /mqtt-test/main/Kconfig | |
parent | 1ab751428b65cab4d31f323eb3c31789321a0db6 (diff) | |
download | modern-esp-sandbox-934bbf7d019e561209802f6a679b3672ce58ef1a.tar.gz modern-esp-sandbox-934bbf7d019e561209802f6a679b3672ce58ef1a.tar.bz2 modern-esp-sandbox-934bbf7d019e561209802f6a679b3672ce58ef1a.tar.xz modern-esp-sandbox-934bbf7d019e561209802f6a679b3672ce58ef1a.zip |
wip. Making room for other apps.
Diffstat (limited to 'mqtt-test/main/Kconfig')
-rw-r--r-- | mqtt-test/main/Kconfig | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/mqtt-test/main/Kconfig b/mqtt-test/main/Kconfig new file mode 100644 index 0000000..11b89dc --- /dev/null +++ b/mqtt-test/main/Kconfig @@ -0,0 +1,46 @@ +menu "Main" + +config MAIN_FLASH_SIZE_KB + int "Size of flash file system. In kilobytes." + range 1 1024 + default 128 + +config MAIN_FLASH_FLASH_ADDR_KB + int "Start address for flash file system. In kilobytes." + default 1024 + +config MAIN_FLASH_SECTOR_SIZE_KB + int "Sector size. In kilobytes" + default 4 + range 1 16 + +config MAIN_FLASH_LOG_BLOCK_SIZE_KB + int "Log block size. In kilobytes" + default 4 + range 1 16 + +config MAIN_FLASH_LOG_PAGE_SIZE + int "Log page" + default 128 + +config MAIN_FLASH_FD_BUF_SIZE + int "FD buf size. Default: 32*4" + default 128 + +config MAIN_DEFAULT_WIFI_SSID + string "Default Wi-Fi SSID" + default "espressif" + +config MAIN_DEFAULT_WIFI_PASSWORD + string "Default Wi-Fi password" + default "12345678" + +config MAIN_DEFAULT_MQTT_HOST + string "Default MQTT host" + default "iot.eclipse.org" + +config MAIN_DEFAULT_MQTT_PORT + int "Default MQTT port" + default 1883 + +endmenu |