Kconfig 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # Copyright (C) 2018 RDA Technologies Limited and/or its affiliates("RDA").
  2. # All rights reserved.
  3. #
  4. # This software is supplied "AS IS" without any warranties.
  5. # RDA assumes no responsibility or liability for the use of the software,
  6. # conveys no license or title under any patent, copyright, or mask work
  7. # right to the product. RDA reserves the right to make changes in the
  8. # software without notification. RDA also make no representation or
  9. # warranty that such application will be suitable for the specified use
  10. # without further testing or modification.
  11. menu "at_tcpip"
  12. config AT_TCPIP_SUPPORT
  13. bool "AT_TCPIP_SUPPORT enabled"
  14. default y
  15. depends on NET_LWIP_TCP_ON
  16. help
  17. When enabled, AT_TCPIP_SUPPORT will be defined
  18. config AT_UDP_SUPPORT
  19. bool "AT_UDP_SUPPORT enabled"
  20. default n if SOC_8811
  21. default n if SOC_8910
  22. default y
  23. depends on NET_LWIP_TCP_ON
  24. help
  25. When enabled, AT_UDP_SUPPORT will be defined
  26. config AT_MYNET_TCPIP_SUPPORT
  27. bool "AT_MYNET_TCPIP_SUPPORT enabled"
  28. default y if SOC_8910
  29. default n
  30. depends on NET_LWIP_TCP_ON
  31. help
  32. When enabled, AT_MYNET_TCPIP_SUPPORT will be defined
  33. config AT_MBEDTLS_TCPIP_SUPPORT
  34. bool "AT_MBEDTLS_TCPIP_SUPPORT enabled"
  35. default y if SOC_8910
  36. default y if SOC_8850
  37. default n
  38. depends on MBEDTLS_TCPIP_SUPPORT
  39. help
  40. When enabled, AT_MBEDTLS_TCPIP_SUPPORT will be defined
  41. config AT_USSL_SUPPORT
  42. bool "AT_USSL_SUPPORT enabled"
  43. default n if SOC_8910
  44. default n
  45. depends on NET_USSL_SUPPORT
  46. help
  47. When enabled, AT_USSL_SUPPORT will be defined
  48. config AT_TCPIP_FULL_FUNC_SUPPORT
  49. bool "AT_TCPIP_FULL_FUNC_SUPPORT enabled"
  50. default y
  51. depends on NET_LWIP_TCP_ON
  52. help
  53. When enabled, AT_TCPIP_FULL_FUNC_SUPPORT will be defined
  54. endmenu