|
@@ -14,7 +14,7 @@ local f_da_id = ProtoField.uint16("TC_TM_PROTOCOL.da_id", "DA Id", base.DEC)
|
|
|
local f_rm_id = ProtoField.uint8("TC_TM_PROTOCOL.rm_id", "RM Id", base.DEC)
|
|
|
local f_tm_id = ProtoField.uint16("TC_TM_PROTOCOL.tm_id", "TM Id", base.DEC)
|
|
|
local f_co_id = ProtoField.uint16("TC_TM_PROTOCOL.co_id", "Co Id", base.DEC)
|
|
|
-local f_tm_len = ProtoField.uint16("TC_TM_PROTOCOL.tm_len", "TM Len", base.HEX)
|
|
|
+local f_tm_len = ProtoField.uint16("TC_TM_PROTOCOL.tm_len", "TM Len", base.DEC)
|
|
|
local f_tm_data = ProtoField.uint8("TC_TM_PROTOCOL.tm_data", "TM Data", base.DEC)
|
|
|
local f_ext_header_len = ProtoField.uint8("TC_TM_PROTOCOL.ext_header_len", "Ext Header Len", base.DEC)
|
|
|
local f_ext_header_data = ProtoField.uint8("TC_TM_PROTOCOL.ext_header_data", "Ext Header Data", base.DEC)
|
|
@@ -234,7 +234,7 @@ end
|
|
|
|
|
|
require("hm_dissector")
|
|
|
|
|
|
- data = HM_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, offset)
|
|
|
+ data = HM_TC_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, offset)
|
|
|
offset = offset + tc_len
|
|
|
else
|
|
|
for i=0,tc_len - 1 do
|
|
@@ -300,7 +300,7 @@ end
|
|
|
info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tc_id, string} --- for info display in wireshark
|
|
|
|
|
|
|
|
|
- pinfo.cols.info ="seq_no = " ..info_display[1] .." TS = " ..info_display[2].." TC_ID = "..info_display[3].." Module = " ..info_display[4] -- for info display in wireshark
|
|
|
+ pinfo.cols.info ="seq_no = " ..info_display[1] ..", TS = " ..info_display[2]..", TC_ID = "..info_display[3]..", Module = " ..info_display[4] -- for info display in wireshark
|
|
|
|
|
|
end
|
|
|
|
|
@@ -431,7 +431,7 @@ function TM_dissector(buffer, pinfo, tree) -- OBC to GS
|
|
|
if tm_id == 621 then
|
|
|
|
|
|
require("hm_dissector")
|
|
|
- array = HM_TM_dissector(buffer, pinfo, tree, TC_TM_PROTOCOL, add, tm_len)
|
|
|
+ array = HM_TM_dissector(buffer, pinfo, subtree, TC_TM_PROTOCOL, add, tm_len)
|
|
|
add = add + tm_len
|
|
|
|
|
|
else
|
|
@@ -473,29 +473,24 @@ function TM_dissector(buffer, pinfo, tree) -- OBC to GS
|
|
|
local string
|
|
|
if tm_id == 621 then
|
|
|
|
|
|
- local switch = {
|
|
|
- [0] = function() return "EPS" end,
|
|
|
- [1] = function() return "ADCS" end,
|
|
|
- [2] = function() return "COMMS SBAND CNTRL" end,
|
|
|
- [3] = function() return "COMMS_UHF_CNTRL" end,
|
|
|
- [4] = function() return "SENSOR" end,
|
|
|
- [5] = function() return "OBC" end,
|
|
|
- [6] = function() return "ERROR HANDLER" end
|
|
|
- }
|
|
|
- string = (switch[array[1]] or function() return "All Module" end)()
|
|
|
-
|
|
|
+ local switch = {
|
|
|
+ [0] = function() return "EPS" end,
|
|
|
+ [1] = function() return "ADCS" end,
|
|
|
+ [2] = function() return "COMMS SBAND CNTRL" end,
|
|
|
+ [3] = function() return "COMMS_UHF_CNTRL" end,
|
|
|
+ [4] = function() return "SENSOR" end,
|
|
|
+ [5] = function() return "OBC" end,
|
|
|
+ [6] = function() return "ERROR HANDLER" end
|
|
|
+ }
|
|
|
+ string = (switch[array[1]] or function() return "All Module" end)()
|
|
|
|
|
|
+ end
|
|
|
|
|
|
- info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id, string, array[2], array[3]} --- for info display in wireshark
|
|
|
+ info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id, string, array[2], array[3]} --- for info display in wireshark
|
|
|
|
|
|
|
|
|
- pinfo.cols.info ="Seq_no = " ..info_display[1] .." TS = " ..info_display[2].." TM ID = "..info_display[3].." Module = "..info_display[4].." Queue id = "..info_display[5].." Number of instance = "..info_display[6] -- for info display in wireshark
|
|
|
- else
|
|
|
- info_display= {buffer(11, 2):le_uint(),buffer(7, 4):le_uint() ,tm_id} --- for info display in wireshark
|
|
|
+ pinfo.cols.info ="Seq_no = " ..info_display[1] ..", TS = " ..info_display[2]..", TM ID = "..info_display[3]..", Module = "..info_display[4]..", Queue id = "..info_display[5]..", Number of instance = "..info_display[6] -- for info display in wireshark
|
|
|
|
|
|
-
|
|
|
- pinfo.cols.info ="Seq_no = " ..info_display[1] .." TS = " ..info_display[2].." TM ID = "..info_display[3] -- for info display in wireshark
|
|
|
- end
|
|
|
-- Check if the buffer contains enough data for the expected total length
|
|
|
--if buffer:len() < 38 + buffer(21, 2):uint() then
|
|
|
-- subtree:add_expert_info(PI_MALFORMED, PI_WARN, "Incomplete data")
|
|
@@ -530,7 +525,7 @@ end
|
|
|
------------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
-- Add a preference for the port number
|
|
|
-TC_TM_PROTOCOL.prefs.port = Pref.uint("UDP Port", 6779, "UDP port for TC_TM protocol")
|
|
|
+TC_TM_PROTOCOL.prefs.port = Pref.uint("UDP Port", 6767, "UDP port for TC_TM protocol")
|
|
|
|
|
|
-- Register the dissector based on the preference
|
|
|
function TC_TM_PROTOCOL.init()
|