| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 | mainmenu "AEM Watch App"source "Kconfig.zephyr"menu "App Configuration"config APP_PRIORITY    int    prompt "App Thread Priority"    default 10    help    This option set app thread priorityconfig APP_STACKSIZE    int    prompt "App Thread Stack Size"    default 2048    help    This option set stack size for app threadconfig AEM_PM_TEST_SUPPORT	bool "aem pm test Support"	help	  This option enables aem pm test features	  config APP_UI_DISK_B	string "drive name for ui resource"	default "/SD:B"	help	  This option set driver name for ui resourceconfig APP_UI_DISK	string "drive name for ui resource"	default "/SD:A"	help	  This option set driver name for ui resourceconfig APP_FONT_DISK	string "drive name for ui resource"	default "/SD:C"	help	  This option set driver name for ui resourceconfig APP_FAT_DISK	string "drive name for fatfs"	default "/SD:"	help	  This option set drive name for fatfsconfig WELCOME_UI_DISK	string "drive name for welcome ui resource"	default "/SD:A"	help	  This option set driver name for welcome ui resourceconfig APP_WATCH_DISK	string "drive name for watch ui resource"	default "/SD:L"	help	  This option set driver name for watch ui resourceconfig AEM_APP_LOCAL_PATH	string "aem app local path"	default "/SD:L"	help	  This option set local pathrsource "src/Kconfig"endmenu
 |