Kconfig 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 "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_B
  33. string "drive name for ui resource"
  34. default "/SD:B"
  35. help
  36. This option set driver name for ui resource
  37. config APP_UI_DISK
  38. string "drive name for ui resource"
  39. default "/SD:A"
  40. help
  41. This option set driver name for ui resource
  42. config APP_FONT_DISK
  43. string "drive name for ui resource"
  44. default "/SD:C"
  45. help
  46. This option set driver name for ui resource
  47. config APP_FAT_DISK
  48. string "drive name for fatfs"
  49. default "/SD:"
  50. help
  51. This option set drive name for fatfs
  52. config WELCOME_UI_DISK
  53. string "drive name for welcome ui resource"
  54. default "/SD:A"
  55. help
  56. This option set driver name for welcome ui resource
  57. endmenu