Kconfig 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. # Kconfig - Actions Sensor manager
  2. #
  3. # Copyright (c) 2016 Actions Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. if SENSOR
  8. config SENSOR_MANAGER
  9. bool
  10. prompt "Sensor Manager Support"
  11. select SENSOR_SERVICE
  12. select SENSOR_HAL
  13. select SENSOR_ALGO
  14. default n
  15. help
  16. This option enables actions sensor manager.
  17. config SENSOR_SERVICE
  18. bool
  19. prompt "Sensor Service Support"
  20. default n
  21. help
  22. This option enables actions sensor service.
  23. config GPS_MANAGER
  24. bool "GPS manager support enable"
  25. default n
  26. help
  27. Enable GPS manager.
  28. config SENSOR_GPS_SERVICE
  29. bool "GPS service support enable"
  30. default n
  31. help
  32. Enable GPS service.
  33. config GPS_PARSE_GBS_ENABLE
  34. bool "GPS nnea parse gbs support enable"
  35. default n
  36. help
  37. Satellite Fault Detection.
  38. config GPS_PARSE_GGA_ENABLE
  39. bool "GPS nnea parse gga support enable"
  40. default n
  41. help
  42. Global Positioning System Fix Data.
  43. config GPS_PARSE_GLL_ENABLE
  44. bool "GPS nnea parse gll support enable"
  45. default n
  46. help
  47. Geographic Position: Latitude/Longitude.
  48. config GPS_PARSE_GSA_ENABLE
  49. bool "GPS nnea parse gsa support enable"
  50. default n
  51. help
  52. DOP and active satellites.
  53. config GPS_PARSE_GST_ENABLE
  54. bool "GPS nnea parse gst support enable"
  55. default n
  56. help
  57. Pseudorange Noise Statistics.
  58. config GPS_PARSE_GSV_ENABLE
  59. bool "GPS nnea parse gsv support enable"
  60. default n
  61. help
  62. Satellites in view.
  63. config GPS_PARSE_RMC_ENABLE
  64. bool "GPS nnea parse RMC support enable"
  65. default n
  66. help
  67. Recommended Minimum: position, velocity, time.
  68. config GPS_PARSE_VTG_ENABLE
  69. bool "GPS nnea parse vtg support enable"
  70. default n
  71. help
  72. Track made good and Ground speed.
  73. config GPS_PARSE_ZDA_ENABLE
  74. bool "GPS nnea parse zda support enable"
  75. default n
  76. help
  77. Time & Date - UTC, day, month, year and local time zone.
  78. endif # SENSOR