Kconfig.projbuild 697 B

123456789101112131415161718192021222324
  1. menu "Test App Configuration"
  2. config TEST_APP_PPP_SERVER_IP
  3. string "IP address of PPP server"
  4. default "10.0.0.1"
  5. help
  6. IP address of PPP server. Note: this is also the address
  7. where the TCP server is started to test the connection
  8. config TEST_APP_PPP_CLIENT_IP
  9. string "IP address of PPP client"
  10. default "10.0.0.2"
  11. help
  12. IP address that PPP server assigns to PPP client.
  13. config TEST_APP_TCP_PORT
  14. int "Port of test"
  15. range 0 65535
  16. default 2222
  17. help
  18. The remote port to which the client will connects to
  19. once the PPP connection established
  20. endmenu