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 priority
- config APP_STACKSIZE
- int
- prompt "App Thread Stack Size"
- default 2048
- help
- This option set stack size for app thread
- config 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 resource
- config APP_UI_DISK
- string "drive name for ui resource"
- default "/SD:A"
- help
- This option set driver name for ui resource
- config APP_FONT_DISK
- string "drive name for ui resource"
- default "/SD:C"
- help
- This option set driver name for ui resource
- config APP_FAT_DISK
- string "drive name for fatfs"
- default "/SD:"
- help
- This option set drive name for fatfs
- config WELCOME_UI_DISK
- string "drive name for welcome ui resource"
- default "/SD:A"
- help
- This option set driver name for welcome ui resource
- config APP_WATCH_DISK
- string "drive name for watch ui resource"
- default "/SD:L"
- help
- This option set driver name for watch ui resource
- config AEM_APP_LOCAL_PATH
- string "aem app local path"
- default "/SD:L"
- help
- This option set local path
- rsource "src/Kconfig"
- endmenu
|