1 | initial version |
Fixed the issue... I had to wrap the below ti.text into a tostring() So the NSTIme was not parte of the problem.
function decode_tlv92(tlv_tree, buffer, offset, len)
-- Event Timestamp
local secs = buffer(offset,4):le_uint()
local msecs = buffer(offset+4,4):le_uint()
tlv_tree:add_le (f.secs, buffer(offset, 4))
tlv_tree:add_le (f.msecs, buffer(offset+4, 4))
local ti = tlv_tree:add(f.time, buffer(offset,8), NSTime.new(secs, msecs))
tlv_tree:append_text (", " .. string.sub(tostring(ti.text), 12))
end
2 | No.2 Revision |
Fixed the issue... I had to wrap the below ti.text into a tostring()
So the NSTIme was not parte part of the problem.
function decode_tlv92(tlv_tree, buffer, offset, len)
-- Event Timestamp
local secs = buffer(offset,4):le_uint()
local msecs = buffer(offset+4,4):le_uint()
tlv_tree:add_le (f.secs, buffer(offset, 4))
tlv_tree:add_le (f.msecs, buffer(offset+4, 4))
local ti = tlv_tree:add(f.time, buffer(offset,8), NSTime.new(secs, msecs))
tlv_tree:append_text (", " .. string.sub(tostring(ti.text), 12))
end
3 | No.3 Revision |
Fixed the issue... I had to wrap the below ti.text into a tostring()
tostring()
So the NSTIme was not part of the problem.
function decode_tlv92(tlv_tree, buffer, offset, len)
-- Event Timestamp
local secs = buffer(offset,4):le_uint()
local msecs = buffer(offset+4,4):le_uint()
tlv_tree:add_le (f.secs, buffer(offset, 4))
tlv_tree:add_le (f.msecs, buffer(offset+4, 4))
local ti = tlv_tree:add(f.time, buffer(offset,8), NSTime.new(secs, msecs))
tlv_tree:append_text (", " .. string.sub(tostring(ti.text), 12))
end