uhf_dissector.lua 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. function UHF_DISSECTOR(buffer, pinfo, tree, HM_TM_dissector, offset, tm_len,data3)
  2. -- UHF_DISSECTOR(buffer, pinfo, tree, TC_TM_PROTOCOL, offset, tm_len,data3)
  3. -- Define ProtoFields for each element of the structure (like in your original example)
  4. local f_cnt_hk_str = ProtoField.uint8("TC_TM_PROTOCOL.cnt_hk_str", "cnt_hk_str", base.DEC)
  5. local f_timestamp = ProtoField.uint32("TC_TM_PROTOCOL.timestamp1", "timestamp", base.DEC)
  6. local f_uptime = ProtoField.uint32("TC_TM_PROTOCOL.uptime", "Uptime", base.DEC)
  7. local f_uarto_rx_count = ProtoField.uint32("TC_TM_PROTOCOL.uarto_rx_count", "UART0 RX Count", base.DEC)
  8. local f_uart1_rx_count = ProtoField.uint32("TC_TM_PROTOCOL.uart1_rx_count", "UART1 RX Count", base.DEC)
  9. local f_rx_mode = ProtoField.uint8("TC_TM_PROTOCOL.rx_mode", "RX Mode", base.DEC)
  10. local f_tx_mode = ProtoField.uint8("TC_TM_PROTOCOL.tx_mode", "TX Mode", base.DEC)
  11. local f_adc = ProtoField.uint16("TC_TM_PROTOCOL.adc", "ADC", base.DEC) -- array of int16_t[10]
  12. local f_last_rssi = ProtoField.uint8("TC_TM_PROTOCOL.last_rssi", "Last RSSI", base.DEC)
  13. local f_last_lqi = ProtoField.uint8("TC_TM_PROTOCOL.last_lqi", "Last LQI", base.DEC)
  14. local f_last_freqest = ProtoField.uint8("TC_TM_PROTOCOL.last_freqest", "Last Frequency Estimate", base.DEC)
  15. local f_pkt_sent = ProtoField.uint32("TC_TM_PROTOCOL.Pkt_sent", "Packets Sent", base.DEC)
  16. local f_cs_count = ProtoField.uint32("TC_TM_PROTOCOL.cs_count", "CS Count", base.DEC)
  17. local f_pkt_good = ProtoField.uint32("TC_TM_PROTOCOL.Pkt_good", "Packets Good", base.DEC)
  18. local f_pkt_rejected_checksum = ProtoField.uint32("TC_TM_PROTOCOL.Pkt_rejected_checksum", "Packets Rejected (Checksum)", base.DEC)
  19. local f_pkt_rejected_reserved = ProtoField.uint32("TC_TM_PROTOCOL.Pkt_rejected_reserved", "Packets Rejected (Reserved)", base.DEC)
  20. local f_pkt_rejected_other = ProtoField.uint32("TC_TM_PROTOCOL.Pkt_rejected_other", "Packets Rejected (Other)", base.DEC)
  21. local f_reserved0 = ProtoField.uint32("TC_TM_PROTOCOL.reserved0", "Reserved0", base.DEC)
  22. -- local f_reserved1 = ProtoField.uint32("TC_TM_PROTOCOL.reserved1", "Reserved1", base.DEC) -- Uncomment if needed
  23. local f_customo = ProtoField.uint32("TC_TM_PROTOCOL.customo", "Custom 0", base.DEC)
  24. local f_custom1 = ProtoField.uint32("TC_TM_PROTOCOL.custom1", "Custom 1", base.DEC)
  25. -- Add the fields to the protocol
  26. HM_TM_dissector.fields = {
  27. f_timestamp,
  28. f_cnt_hk_str,
  29. f_uptime,
  30. f_uarto_rx_count,
  31. f_uart1_rx_count,
  32. f_rx_mode,
  33. f_tx_mode,
  34. f_adc,
  35. f_last_rssi,
  36. f_last_lqi,
  37. f_last_freqest,
  38. f_pkt_sent,
  39. f_cs_count,
  40. f_pkt_good,
  41. f_pkt_rejected_checksum,
  42. f_pkt_rejected_reserved,
  43. f_pkt_rejected_other,
  44. f_reserved0,
  45. -- f_reserved1, -- Uncomment if you want to include reserved1
  46. f_customo,
  47. f_custom1
  48. }
  49. -- For your dissection function (within a loop structure)
  50. for i=1, data3 do
  51. --offset = offset + 8
  52. local subtree = tree:add(TC_TM_PROTOCOL, buffer(), "UHF")
  53. local a = buffer(offset, 1):le_uint()
  54. subtree:add(f_cnt_hk_str, a)
  55. offset = offset + 1
  56. local b = buffer(offset, 4):le_uint()
  57. subtree:add(f_timestamp, b)
  58. offset = offset + 4
  59. b = buffer(offset, 4):le_uint()
  60. subtree:add(f_timestamp, b)
  61. offset = offset + 4
  62. -- dissect uptime
  63. local uptime = buffer(offset, 4):le_uint()
  64. subtree:add(f_uptime, uptime)
  65. offset = offset + 4
  66. -- dissect uarto_rx_count
  67. local uarto_rx_count = buffer(offset, 4):le_uint()
  68. subtree:add(f_uarto_rx_count, uarto_rx_count)
  69. offset = offset + 4
  70. -- dissect uart1_rx_count
  71. local uart1_rx_count = buffer(offset, 4):le_uint()
  72. subtree:add(f_uart1_rx_count, uart1_rx_count)
  73. offset = offset + 4
  74. -- dissect rx_mode
  75. local rx_mode = buffer(offset, 1):le_uint()
  76. subtree:add(f_rx_mode, rx_mode)
  77. offset = offset + 1
  78. -- dissect tx_mode
  79. local tx_mode = buffer(offset, 1):le_uint()
  80. subtree:add(f_tx_mode, tx_mode)
  81. offset = offset + 1
  82. -- dissect adc (array of int16, loop through based on 10 elements)
  83. for j = 1, 10 do
  84. local adc_value = buffer(offset, 2):le_int()
  85. subtree:add(f_adc, adc_value)
  86. offset = offset + 2
  87. end
  88. -- dissect last_rssi
  89. local last_rssi = buffer(offset, 1):le_int()
  90. subtree:add(f_last_rssi, last_rssi)
  91. offset = offset + 1
  92. -- dissect last_lqi
  93. local last_lqi = buffer(offset, 1):le_uint()
  94. subtree:add(f_last_lqi, last_lqi)
  95. offset = offset + 1
  96. -- dissect last_freqest
  97. local last_freqest = buffer(offset, 1):le_int()
  98. subtree:add(f_last_freqest, last_freqest)
  99. offset = offset + 1
  100. -- dissect Pkt_sent
  101. local pkt_sent = buffer(offset, 4):le_uint()
  102. subtree:add(f_pkt_sent, pkt_sent)
  103. offset = offset + 4
  104. -- dissect cs_count
  105. local cs_count = buffer(offset, 4):le_uint()
  106. subtree:add(f_cs_count, cs_count)
  107. offset = offset + 4
  108. -- dissect Pkt_good
  109. local pkt_good = buffer(offset, 4):le_uint()
  110. subtree:add(f_pkt_good, pkt_good)
  111. offset = offset + 4
  112. -- dissect Pkt_rejected_checksum
  113. local pkt_rejected_checksum = buffer(offset, 4):le_uint()
  114. subtree:add(f_pkt_rejected_checksum, pkt_rejected_checksum)
  115. offset = offset + 4
  116. -- dissect Pkt_rejected_reserved
  117. local pkt_rejected_reserved = buffer(offset, 4):le_uint()
  118. subtree:add(f_pkt_rejected_reserved, pkt_rejected_reserved)
  119. offset = offset + 4
  120. -- dissect Pkt_rejected_other
  121. local pkt_rejected_other = buffer(offset, 4):le_uint()
  122. subtree:add(f_pkt_rejected_other, pkt_rejected_other)
  123. offset = offset + 4
  124. -- dissect reserved0
  125. local reserved0 = buffer(offset, 4):le_uint()
  126. subtree:add(f_reserved0, reserved0)
  127. offset = offset + 4
  128. -- dissect customo
  129. --local customo = buffer(offset, 4):le_uint()
  130. --subtree:add(f_customo, customo)
  131. --offset = offset + 4
  132. -- dissect custom1
  133. --local custom1 = buffer(offset, 4):le_uint()
  134. --subtree:add(f_custom1, custom1)
  135. --offset = offset + 4
  136. -- (continue for any other fields you want to dissect, e.g., reserved1 if needed)
  137. end
  138. end