2012-04-06 18:33:17 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:14:53 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 18:33:17 +02:00
|
|
|
#
|
2012-04-13 04:14:09 +02:00
|
|
|
|
2014-07-04 01:31:17 +02:00
|
|
|
config EXAMPLES_WEBSERVER
|
2018-09-03 17:29:56 +02:00
|
|
|
tristate "uIP web server example"
|
2012-04-13 04:14:09 +02:00
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable the uIP web server example
|
|
|
|
|
2014-07-04 01:31:17 +02:00
|
|
|
if EXAMPLES_WEBSERVER
|
2014-02-18 21:35:49 +01:00
|
|
|
|
2014-07-04 01:31:17 +02:00
|
|
|
config EXAMPLES_WEBSERVER_IPADDR
|
2014-02-18 21:57:12 +01:00
|
|
|
hex "Device IP"
|
2014-02-18 21:35:49 +01:00
|
|
|
default 0x0a000002
|
|
|
|
---help---
|
|
|
|
This is the IP address of your board.
|
|
|
|
|
2014-07-04 01:31:17 +02:00
|
|
|
config EXAMPLES_WEBSERVER_DRIPADDR
|
2014-02-18 21:57:12 +01:00
|
|
|
hex "Default Router IP"
|
2014-02-18 21:35:49 +01:00
|
|
|
default 0x0a000001
|
|
|
|
---help---
|
|
|
|
This is the IP address of your router/gateway.
|
|
|
|
|
2014-07-04 01:31:17 +02:00
|
|
|
config EXAMPLES_WEBSERVER_NETMASK
|
2014-02-18 21:57:12 +01:00
|
|
|
hex "Network Mask"
|
2014-02-18 21:35:49 +01:00
|
|
|
default 0xffffff00
|
|
|
|
---help---
|
|
|
|
This is the network mask to use on this device.
|
|
|
|
|
2018-11-09 01:48:28 +01:00
|
|
|
config EXAMPLES_WEBSERVER_DHCPC
|
|
|
|
bool "Enable DHCPC"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable DHCP client.
|
|
|
|
|
2014-07-04 01:31:17 +02:00
|
|
|
config EXAMPLES_WEBSERVER_NOMAC
|
2014-02-18 21:35:49 +01:00
|
|
|
bool "No hardware MAC"
|
|
|
|
default y
|
|
|
|
---help---
|
|
|
|
Some devices don't have hardware MAC then we need to define a
|
|
|
|
software MAC.
|
|
|
|
|
2012-04-13 04:14:09 +02:00
|
|
|
endif
|