Kconfig.projbuild 849 B

1234567891011121314151617181920212223242526
  1. menu "Example Configuration"
  2. config BROKER_URI
  3. string "Broker URL"
  4. default "mqtts://mqtt.eclipseprojects.io: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. config BROKER_BIN_SIZE_TO_SEND
  17. # This option is not visible and is used only to set parameters for example tests
  18. # Here we configure the data size to send and to be expected in the python script
  19. int
  20. default 20000
  21. endmenu