Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. # Copyright (C) 2018 RDA Technologies Limited and/or its affiliates("RDA").
  2. # All rights reserved.
  3. #
  4. # This software is supplied "AS IS" without any warranties.
  5. # RDA assumes no responsibility or liability for the use of the software,
  6. # conveys no license or title under any patent, copyright, or mask work
  7. # right to the product. RDA reserves the right to make changes in the
  8. # software without notification. RDA also make no representation or
  9. # warranty that such application will be suitable for the specified use
  10. # without further testing or modification.
  11. menu "Application start"
  12. config APP_VERSION
  13. string "Application version"
  14. default "2.1"
  15. help
  16. The version string format must be "x.x"
  17. config APP_START_ATR
  18. bool "Start AT receiver"
  19. default y
  20. help
  21. Start AT receiver at application start.
  22. config APP_RUN_ON_FLASH
  23. bool "Application run on flash"
  24. default y
  25. help
  26. When enabled, application will run from flash directly. Otherwise,
  27. application codes will be copied to RAM and executed on RAM.
  28. config APP_NOT_START_MODEM
  29. bool "Not start modem"
  30. depends on SOC_8811
  31. default n
  32. help
  33. It is only for special debug purpose.
  34. config APP_WDT_MAX_INTERVAL
  35. int "Application watchdog max feed interval (ms)"
  36. default 20000
  37. help
  38. If not feed watchdog more than this interval the chip will restart
  39. by watchdog. (Ignore in DEBUG mode)
  40. config APP_WDT_FEED_INTERVAL
  41. int "Application watchdog normal feed interval (ms)"
  42. default 4000
  43. help
  44. Normal feed interval. (Ignore in DEBUG mode)
  45. config APP_SSIM_SUPPORT
  46. bool "Support soft sim hot plug"
  47. default n
  48. help
  49. When defined, soft sim hot plug can be used.
  50. config APPIMG_LOAD_FLASH
  51. bool "Load application image from flash"
  52. default n
  53. help
  54. When enabled, the application image at the reserved flash location
  55. will tried to be loaded at system startup.
  56. config APPIMG_LOAD_FILE
  57. bool "Load application image from file"
  58. default n
  59. help
  60. When enabled, the application image at file will tried to be loaded
  61. at system startup.
  62. if APPIMG_LOAD_FILE
  63. config APPIMG_LOAD_FILE_NAME
  64. string "Application image file name"
  65. default "/appload.img"
  66. help
  67. The file name of application image.
  68. #Since the quectel file system uses a UFS disk, the directory is under /user, so the img directory must be under /user
  69. config APPIMG2_LOAD_FILE_NAME #quectel update
  70. string "Application2 image file name"
  71. default "/user/app2load.img"
  72. help
  73. The file name of application image.
  74. endif
  75. config APPIMG_SIGCHECK_ENABLE
  76. bool "Enable application image signature check"
  77. default y
  78. help
  79. When enabled and secure boot is enabled, application image signature
  80. will be verified.
  81. config ATR_UART_BLUE_SCREEN_DEBUG
  82. bool "Reuse AT UART for debugging in blue screen"
  83. default y
  84. help
  85. When enable, the AT UART will be reused as debugging at blue screen
  86. mode.
  87. endmenu