Kconfig 787 B

12345678910111213141516171819202122232425
  1. menu "OTA Manager"
  2. choice OTA_TYPE
  3. prompt "Type of OTA"
  4. default OTA_WITHOUT_SECURITY
  5. config OTA_WITHOUT_SECURITY
  6. bool "Enable OTA without security"
  7. help
  8. This transfers file without any security using OTA
  9. config OTA_WITH_PROTOCOMM
  10. bool
  11. prompt "Enable protocomm level security"
  12. depends on BT_NIMBLE_ENABLED
  13. help
  14. Used to enable protocomm level security for file transfer using OTA
  15. config PRE_ENC_OTA
  16. bool
  17. prompt "Enable pre encrypted OTA"
  18. depends on BT_NIMBLE_ENABLED
  19. help
  20. Used to enable transferring pre encrypted file via OTA
  21. endchoice
  22. endmenu