mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
17 lines
519 B
Plaintext
17 lines
519 B
Plaintext
|
menu "Modbus TCP Example Configuration"
|
||
|
|
||
|
choice MB_SLAVE_IP_RESOLVER
|
||
|
prompt "Select method to resolve slave IP addresses"
|
||
|
help
|
||
|
Select method which is used to resolve slave IP addresses
|
||
|
and configure Master TCP IP stack.
|
||
|
|
||
|
config MB_MDNS_IP_RESOLVER
|
||
|
bool "Resolve Modbus slave addresses using mDNS service."
|
||
|
|
||
|
config MB_SLAVE_IP_FROM_STDIN
|
||
|
bool "Configure Modbus slave addresses from stdin"
|
||
|
endchoice
|
||
|
|
||
|
endmenu
|