Kconfig.projbuild 592 B

1234567891011121314151617181920
  1. menu "Example Configuration"
  2. config BROKER_URI
  3. string "Broker URL"
  4. default "mqtts://mqtt.eclipse.org:8883"
  5. help
  6. URL of an mqtt broker which this example connects to.
  7. config BROKER_CERTIFICATE_OVERRIDE
  8. string "Broker certificate override"
  9. default ""
  10. help
  11. Please leave empty if broker certificate included from a textfile; otherwise fill in a base64 part of PEM
  12. format certificate
  13. config BROKER_CERTIFICATE_OVERRIDDEN
  14. bool
  15. default y if BROKER_CERTIFICATE_OVERRIDE != ""
  16. endmenu