dump1090.lua 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. -- Copyright 2014 Álvaro Fernández Rojas <noltari@gmail.com>
  2. -- Licensed to the public under the Apache License 2.0.
  3. m = Map("dump1090", "dump1090", translate("dump1090 is a Mode S decoder specifically designed for RTLSDR devices, here you can configure the settings."))
  4. s = m:section(TypedSection, "dump1090", "")
  5. s.addremove = true
  6. s.anonymous = false
  7. enable=s:option(Flag, "disabled", translate("Enabled"))
  8. enable.enabled="0"
  9. enable.disabled="1"
  10. enable.default = "1"
  11. enable.rmempty = false
  12. respawn=s:option(Flag, "respawn", translate("Respawn"))
  13. respawn.default = false
  14. device_index=s:option(Value, "device_index", translate("RTL device index"))
  15. device_index.rmempty = true
  16. device_index.datatype = "uinteger"
  17. gain=s:option(Value, "gain", translate("Gain (-10 for auto-gain)"))
  18. gain.rmempty = true
  19. gain.datatype = "integer"
  20. enable_agc=s:option(Flag, "enable_agc", translate("Enable automatic gain control"))
  21. enable_agc.default = false
  22. freq=s:option(Value, "freq", translate("Frequency"))
  23. freq.rmempty = true
  24. freq.datatype = "uinteger"
  25. ifile=s:option(Value, "ifile", translate("Data file"))
  26. ifile.rmempty = true
  27. ifile.datatype = "file"
  28. raw=s:option(Flag, "raw", translate("Show only messages hex values"))
  29. raw.default = false
  30. net=s:option(Flag, "net", translate("Enable networking"))
  31. modeac=s:option(Flag, "modeac", translate("Enable decoding of SSR Modes 3/A & 3/C"))
  32. modeac.default = false
  33. net_beast=s:option(Flag, "net_beast", translate("TCP raw output in Beast binary format"))
  34. net_beast.default = false
  35. net_only=s:option(Flag, "net_only", translate("Enable just networking, no RTL device or file used"))
  36. net_only.default = false
  37. net_bind_address=s:option(Value, "net_bind_address", translate("IP address to bind to"))
  38. net_bind_address.rmempty = true
  39. net_bind_address.datatype = "ipaddr"
  40. net_http_port=s:option(Value, "net_http_port", translate("HTTP server port"))
  41. net_http_port.rmempty = true
  42. net_http_port.datatype = "port"
  43. net_ri_port=s:option(Value, "net_ri_port", translate("TCP raw input listen port"))
  44. net_ri_port.rmempty = true
  45. net_ri_port.datatype = "port"
  46. net_ro_port=s:option(Value, "net_ro_port", translate("TCP raw output listen port"))
  47. net_ro_port.rmempty = true
  48. net_ro_port.datatype = "port"
  49. net_sbs_port=s:option(Value, "net_sbs_port", translate("TCP BaseStation output listen port"))
  50. net_sbs_port.rmempty = true
  51. net_sbs_port.datatype = "port"
  52. net_bi_port=s:option(Value, "net_bi_port", translate("TCP Beast input listen port"))
  53. net_bi_port.rmempty = true
  54. net_bi_port.datatype = "port"
  55. net_bo_port=s:option(Value, "net_bo_port", translate("TCP Beast output listen port"))
  56. net_bo_port.rmempty = true
  57. net_bo_port.datatype = "port"
  58. net_ro_size=s:option(Value, "net_ro_size", translate("TCP raw output minimum size"))
  59. net_ro_size.rmempty = true
  60. net_ro_size.datatype = "uinteger"
  61. net_ro_rate=s:option(Value, "net_ro_rate", translate("TCP raw output memory flush rate"))
  62. net_ro_rate.rmempty = true
  63. net_ro_rate.datatype = "uinteger"
  64. net_heartbeat=s:option(Value, "net_heartbeat", translate("TCP heartbeat rate in seconds"))
  65. net_heartbeat.rmempty = true
  66. net_heartbeat.datatype = "uinteger"
  67. net_buffer=s:option(Value, "net_buffer", translate("TCP buffer size 64Kb * (2^n)"))
  68. net_buffer.rmempty = true
  69. net_buffer.datatype = "uinteger"
  70. lat=s:option(Value, "lat", translate("Reference/receiver latitude for surface posn"))
  71. lat.rmempty = true
  72. lat.datatype = "integer"
  73. lon=s:option(Value, "lon", translate("Reference/receiver longitude for surface posn"))
  74. lon.rmempty = true
  75. lon.datatype = "integer"
  76. fix=s:option(Flag, "fix", translate("Enable single-bits error correction using CRC"))
  77. fix.default = false
  78. no_fix=s:option(Flag, "no_fix", translate("Disable single-bits error correction using CRC"))
  79. no_fix.default = false
  80. no_crc_check=s:option(Flag, "no_crc_check", translate("Disable messages with broken CRC"))
  81. no_crc_check.default = false
  82. phase_enhance=s:option(Flag, "phase_enhance", translate("Enable phase enhancement"))
  83. phase_enhance.default = false
  84. agressive=s:option(Flag, "agressive", translate("More CPU for more messages"))
  85. agressive.default = false
  86. mlat=s:option(Flag, "mlat", translate("Display raw messages in Beast ascii mode"))
  87. mlat.default = false
  88. stats=s:option(Flag, "stats", translate("Print stats at exit"))
  89. stats.default = false
  90. stats_every=s:option(Value, "stats_every", translate("Show and reset stats every seconds"))
  91. stats_every.rmempty = true
  92. stats_every.datatype = "uinteger"
  93. onlyaddr=s:option(Flag, "onlyaddr", translate("Show only ICAO addresses"))
  94. onlyaddr.default = false
  95. metric=s:option(Flag, "metric", translate("Use metric units"))
  96. metric.default = false
  97. snip=s:option(Flag, "snip", translate("Strip IQ file removing samples"))
  98. snip.rmempty = true
  99. snip.datatype = "uinteger"
  100. debug_mode=s:option(Flag, "debug", translate("Debug mode flags"))
  101. debug_mode.rmempty = true
  102. ppm=s:option(Flag, "ppm", translate("Set receiver error in parts per million"))
  103. ppm.rmempty = true
  104. ppm.datatype = "uinteger"
  105. return m