Kconfig.projbuild 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. menu "Example Configuration"
  2. config WIFI_SSID
  3. string "WiFi SSID"
  4. default "myssid"
  5. help
  6. SSID (network name) for the example to connect to.
  7. config WIFI_PASSWORD
  8. string "WiFi Password"
  9. default "mypassword"
  10. help
  11. WiFi password (WPA or WPA2) for the example to use.
  12. config FIRMWARE_UPGRADE_URL
  13. string "firmware upgrade url endpoint"
  14. default "https://192.168.0.3:8070/hello-world.bin"
  15. help
  16. URL of server which hosts the firmware
  17. image.
  18. config EXAMPLE_FIRMWARE_UPGRADE_URL_FROM_STDIN
  19. bool
  20. default y if FIRMWARE_UPGRADE_URL = "FROM_STDIN"
  21. config EXAMPLE_SKIP_COMMON_NAME_CHECK
  22. bool "Skip server certificate CN fieldcheck"
  23. default n
  24. help
  25. This allows you to skip the validation of OTA server certificate CN field.
  26. config EXAMPLE_SKIP_VERSION_CHECK
  27. bool "Skip firmware version check"
  28. default n
  29. help
  30. This allows you to skip the firmware version check.
  31. config EXAMPLE_OTA_RECV_TIMEOUT
  32. int "OTA Receive Timeout"
  33. default 5000
  34. help
  35. Maximum time for reception
  36. endmenu