OVMS3-idf/examples/ethernet/eth2ap/main/Kconfig.projbuild

53 lines
1.8 KiB
Plaintext
Raw Normal View History

menu "Example Configuration"
2019-04-10 08:24:50 +00:00
choice EXAMPLE_ETH_PHY_MODEL
prompt "Ethernet PHY Device"
2019-04-10 08:24:50 +00:00
default EXAMPLE_ETH_PHY_IP101
help
2019-04-10 08:24:50 +00:00
Select the Ethernet PHY device to use in the example.
config EXAMPLE_ETH_PHY_IP101
bool "IP101"
help
IP101 is a single port 10/100 MII/RMII/TP/Fiber Fast Ethernet Transceiver.
Goto http://www.icplus.com.tw/pp-IP101G.html for more information about it.
2019-04-10 08:24:50 +00:00
config EXAMPLE_ETH_PHY_RTL8201
bool "RTL8201/SR8201"
help
2019-04-10 08:24:50 +00:00
RTL8201F/SR8201F is a single port 10/100Mb Ethernet Transceiver with auto MDIX.
Goto http://www.corechip-sz.com/productsview.asp?id=22 for more information about it.
config EXAMPLE_ETH_PHY_LAN8720
bool "LAN8720"
help
2019-04-10 08:24:50 +00:00
LAN8720A is a small footprint RMII 10/100 Ethernet Transceiver with HP Auto-MDIX Support.
Goto https://www.microchip.com/LAN8720A for more information about it.
2019-04-10 08:24:50 +00:00
config EXAMPLE_ETH_PHY_DP83848
bool "DP83848"
help
2019-04-10 08:24:50 +00:00
DP83848 is a single port 10/100Mb/s Ethernet Physical Layer Transceiver.
Goto http://www.ti.com/product/DP83848J for more information about it.
endchoice
config EXAMPLE_WIFI_SSID
string "Wi-Fi SSID"
default "eth2ap"
help
Set the SSID of Wi-Fi ap interface.
config EXAMPLE_WIFI_PASSWORD
string "Wi-Fi Password"
default "12345678"
help
Set the password of Wi-Fi ap interface.
config EXAMPLE_MAX_STA_CONN
int "Maximum STA connections"
default 4
help
Maximum number of the station that allowed to connect to current Wi-Fi hotspot.
endmenu