Kconfig 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 "GNSS"
  12. config SUPPORT_GNSS
  13. bool "Support GNSS"
  14. default y
  15. help
  16. When defined, Target device can support GNSS position fix
  17. choice
  18. prompt "GNSS chip version"
  19. depends on SUPPORT_GNSS
  20. default GPS_CHIP_VER_GREENEYE2
  21. config GPS_CHIP_VER_GREENEYE2
  22. depends on SUPPORT_GNSS
  23. bool "GE2"
  24. config GPS_CHIP_VER_NONE
  25. depends on SUPPORT_GNSS
  26. bool "None"
  27. endchoice
  28. choice
  29. prompt "Switch of GNSS FW Mode"
  30. default GPS_MODE_GPS_BD
  31. config GPS_MODE_GPS_BD
  32. bool "GPS BDS"
  33. config GPS_MODE_GPS_GLONASS
  34. bool "GPS GLONASS"
  35. endchoice
  36. config GPS_TCARD_LOG_SUPPORT
  37. bool "Switch of GNSS tcard log storage"
  38. default n
  39. config GPS_MINI_LOG_SUPPORT
  40. bool "Switch of GNSS MINI mini log"
  41. default y
  42. choice
  43. prompt "Switch of A-GNSS"
  44. default GPS_AGPS_SUPPORT_QX
  45. config GPS_AGPS_SUPPORT_NONE
  46. bool "NONE"
  47. config GPS_AGPS_SUPPORT_QX
  48. bool "QXWZ"
  49. config GPS_AGPS_SUPPORT_SPRD_AGPS
  50. bool "SPRD AGNSS"
  51. endchoice
  52. choice
  53. prompt "GNSS COMM MODE"
  54. default GPS_TRANS_VIA_SIPC
  55. config GPS_TRANS_VIA_UART
  56. bool "UART"
  57. config GPS_TRANS_VIA_SIPC
  58. bool "SIPC"
  59. endchoice
  60. config GPS_SPREAD_ORBIT_SUPPORT
  61. bool "Support SPREAD ORBIT"
  62. default n
  63. endmenu