Kconfig 468 B

1234567891011121314151617181920212223242526
  1. mainmenu "lvgl demo"
  2. source "Kconfig.zephyr"
  3. menu "App Configuration"
  4. config OTA_UPGRADE
  5. bool "OTA Upgrade Support"
  6. default n
  7. select PARTITION
  8. select FIRMWARE_VERSION
  9. select RING_BUFFER
  10. help
  11. This option enable OTA upgrade.
  12. config OTA_BACKEND_BLUETOOTH
  13. bool "OTA upgrade by Bluetooth Support"
  14. depends on BT_MANAGER
  15. select STREAM
  16. select BT_SPPBLE_STREAM
  17. default n
  18. help
  19. This option enables OTA upgrade by Bluetooth SPP/BLE.
  20. endmenu