35 lines
604 B
Plaintext
35 lines
604 B
Plaintext
|
#
|
||
|
# For a description of the syntax of this configuration file,
|
||
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
||
|
#
|
||
|
|
||
|
config NETUTILS_ESP8266
|
||
|
bool "ESP8266"
|
||
|
default n
|
||
|
---help---
|
||
|
Enable support for ESP8266 application interface.
|
||
|
|
||
|
if NETUTILS_ESP8266
|
||
|
|
||
|
config ESP8266_DEV_PATH
|
||
|
string "Serial device path"
|
||
|
default "/dev/ttyS1"
|
||
|
|
||
|
config ESP8266_BAUDRATE
|
||
|
int "Serial BAUD rate"
|
||
|
default 115200
|
||
|
|
||
|
config WIFI_MAX_TX_LEN
|
||
|
int "Max. TX length"
|
||
|
default 256
|
||
|
|
||
|
config WIFI_MAX_RX_LEN
|
||
|
int "Max. RX length"
|
||
|
default 256
|
||
|
|
||
|
config LESP_THREAD_PRIO
|
||
|
int "Worker thread priority"
|
||
|
default 100
|
||
|
|
||
|
endif
|