Config.coap 980 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. config COAP_COMM_ENABLED
  2. bool "FEATURE_COAP_COMM_ENABLED"
  3. default n
  4. select COAP_CLIENT
  5. help
  6. Establish non-persistent connection with AliCloud via CoAP-based protocol
  7. Switching to "y" leads to building CoAP related implementation into SDK and COAP_COMM_ENABLED included into CFLAGS
  8. Switching to "n" leads to keeping CoAP-based cloud connection implementations out of SDK
  9. config COAP_PACKET
  10. bool
  11. default n
  12. config COAP_CLIENT
  13. bool
  14. default n
  15. select INFRA_CJSON
  16. select INFRA_JSON_PARSER
  17. select INFRA_HTTPC
  18. select INFRA_SHA256
  19. select INFRA_MD5
  20. select INFRA_REPORT
  21. select INFRA_STRING
  22. select COAP_DTLS_SUPPORT
  23. select HAL_CRYPTO
  24. select HAL_UDP
  25. select COAP_PACKET
  26. config COAP_SERVER
  27. bool
  28. default n
  29. select INFRA_MD5
  30. select INFRA_STRING
  31. select INFRA_JSON_PARSER
  32. select INFRA_SHA1
  33. select HAL_UDP
  34. select HAL_KV
  35. select HAL_CRYPTO
  36. select COAP_PACKET