Kconfig 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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_lwm2m"
  12. choice
  13. prompt "AT_MIPL_SUPPORT"
  14. default AT_CUS_MIPL_SUPPORT if AT_CUS_SUPPORT
  15. default AT_LWM2M_MIPL_SUPPORT if SOC_8811 || SOC_8850
  16. default AT_CISSDK_MIPL_SUPPORT
  17. config AT_CISSDK_MIPL_SUPPORT
  18. bool "AT_CISSDK_MIPL_SUPPORT enabled"
  19. select NET_CIS_SDK_SUPPORT
  20. config AT_LWM2M_MIPL_SUPPORT
  21. bool "AT_LWM2M_MIPL_SUPPORT enabled"
  22. select NET_LWM2M_SUPPORT
  23. select LWM2M_ONENET_SUPPORT
  24. config AT_LWM2M_MIPL_SOTA_SUPPORT
  25. bool "AT_LWM2M_MIPL_SOTA_SUPPORT enabled"
  26. depends on AT_LWM2M_MIPL_SUPPORT
  27. default y if SOC_8811
  28. select LWM2M_ONENET_UPDATE
  29. select LWM2M_ONENET_SOTA
  30. config AT_CUS_MIPL_SUPPORT
  31. bool "AT_CUS_MIPL_SUPPORT enabled"
  32. select NET_LWM2M_SUPPORT
  33. select LWM2M_ONENET_SUPPORT
  34. config AT_NO_MIPL_SUPPORT
  35. bool "AT_NO_MIPL_SUPPORT enabled"
  36. endchoice
  37. config AT_OCEANCONNECT_SUPPORT
  38. bool "AT_OCEANCONNECT_SUPPORT enabled"
  39. default y
  40. select NET_LWM2M_SUPPORT
  41. help
  42. When enabled, AT_OCEANCONNECT_SUPPORT will be defined
  43. config AT_CTWING_SUPPORT
  44. bool "AT_CTWING_SUPPORT enabled"
  45. default n if SOC_8910
  46. default y
  47. select NET_LWM2M_SUPPORT
  48. select LWM2M_CTWING_SUPPORT
  49. help
  50. When enabled, AT_AEP_SUPPORT will be defined
  51. config AT_CTWING_SELFREG_SUPPORT
  52. bool "AT_CTWING_SELFREG_SUPPORT enabled"
  53. depends on AT_CTWING_SUPPORT
  54. default y if SOC_8811
  55. select NET_CTWING_SELFREG_SUPPORT
  56. help
  57. When enabled, AT_CTWING_SELFREG_SUPPORT will be defined
  58. config AT_CTWING_NEW_STANDARD
  59. bool "AT_CTWING_NEW_STANDARD enabled"
  60. default n
  61. depends on AT_CTWING_SUPPORT
  62. select LWM2M_CTWING_NEW_STANDARD
  63. help
  64. When enabled, AT_CTWING_NEW_STANDARD will be defined
  65. endmenu