Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. mainmenu "AEM Watch App"
  2. source "Kconfig.zephyr"
  3. menu "App Configuration"
  4. config APP_PRIORITY
  5. int
  6. prompt "App Thread Priority"
  7. default 10
  8. help
  9. This option set app thread priority
  10. config APP_STACKSIZE
  11. int
  12. prompt "App Thread Stack Size"
  13. default 2048
  14. help
  15. This option set stack size for app thread
  16. config AEM_PM_TEST_SUPPORT
  17. bool "aem pm test Support"
  18. help
  19. This option enables aem pm test features
  20. config APP_UI_DISK_B
  21. string "drive name for ui resource"
  22. default "/SD:B"
  23. help
  24. This option set driver name for ui resource
  25. config APP_UI_DISK
  26. string "drive name for ui resource"
  27. default "/SD:A"
  28. help
  29. This option set driver name for ui resource
  30. config APP_FONT_DISK
  31. string "drive name for ui resource"
  32. default "/SD:C"
  33. help
  34. This option set driver name for ui resource
  35. config APP_FAT_DISK
  36. string "drive name for fatfs"
  37. default "/SD:"
  38. help
  39. This option set drive name for fatfs
  40. config WELCOME_UI_DISK
  41. string "drive name for welcome ui resource"
  42. default "/SD:A"
  43. help
  44. This option set driver name for welcome ui resource
  45. config APP_WATCH_DISK
  46. string "drive name for watch ui resource"
  47. default "/SD:L"
  48. help
  49. This option set driver name for watch ui resource
  50. config AEM_APP_LOCAL_PATH
  51. string "aem app local path"
  52. default "/SD:L"
  53. help
  54. This option set local path
  55. rsource "src/Kconfig"
  56. endmenu