Kconfig 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 "PAM"
  12. config PAM_LTE_GNSS_WIFISCAN_SUPPORT
  13. bool "Support Pam"
  14. default n if SOC_8811
  15. default n
  16. config PAM_HANDSHAKE_LTE_TIMEOUT
  17. int "timeout for handshake lte stack"
  18. default 10000
  19. config PAM_WIFISCAN_TIMEOUT
  20. int "timeout for wifiscan"
  21. default 20000
  22. config PAM_GNSS_CONTEXT_TIMEOUT
  23. int "timeout for gnss context handle to libgps"
  24. default 10000
  25. config PAM_GNSS_EVENT_MAX_COUNT
  26. int "gnss event count"
  27. default 50
  28. config PAM_MEM_FREE_LATER_COUNT
  29. int "Pam Maximum count of delay free memory"
  30. default 16
  31. help
  32. Some memory will be freed after the event is processed. The typical use
  33. case is pointer in event. It is tedious to free it at every return. And
  34. "free later" concept is introduced. It means it will be freed in event
  35. loop after the current event is processed.
  36. The maximum count is to avoid dynamic management.
  37. config PAM_GNSS_PENDING_EVID_COUNT
  38. int "Pam Maximum pending EVID count"
  39. default 64
  40. help
  41. CFW response manager is used for CFW response callback. This is the
  42. maximum count of pending UTI count.
  43. endmenu