Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Kconfig - ACTIONS primitive options for sdk version 2.0
  2. #
  3. # Copyright (c) 2015 Intel Corporation
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. mainmenu "BT Watch App"
  18. source "Kconfig.zephyr"
  19. menu "App Configuration"
  20. config APP_PRIORITY
  21. int
  22. prompt "App Thread Priority"
  23. default 10
  24. help
  25. This option set app thread priority
  26. config APP_STACKSIZE
  27. int
  28. prompt "App Thread Stack Size"
  29. default 2048
  30. help
  31. This option set stack size for app thread
  32. config APP_UI_DISK
  33. string "drive name for ui resource"
  34. default "/SD:A"
  35. help
  36. This option set driver name for ui resource
  37. config APP_FAT_DISK
  38. string "drive name for fatfs"
  39. default "/SD:"
  40. help
  41. This option set drive name for fatfs
  42. rsource "src/ota_recovery/Kconfig"
  43. endmenu