|
@@ -417,7 +417,7 @@ local subtree = tree:add(sensor_protocol, buffer(), "SENSOR QUEUE ID 11")
|
|
|
-- Loop through the data (num_of_instance could represent the number of instances or packets to dissect)
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree1 = subtree:add(sensor_dissector, buffer(), "INSTANCE "..i)
|
|
|
+ local subtree1 = subtree:add(sensor_protocol, buffer(), "INSTANCE "..i)
|
|
|
|
|
|
-- dissect voltage (4 bytes for float)
|
|
|
local voltage = buffer(offset, 4):le_float() -- Float type is 4 bytes (32 bits)
|
|
@@ -453,7 +453,7 @@ local subtree = tree:add(sensor_protocol, buffer(), "SENSOR QUEUE ID 12")
|
|
|
-- Loop through the data (num_of_instance could represent the number of instances or packets to dissect)
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree1 = subtree:add(sensor_dissector, buffer(), "INSTANCE "..i)
|
|
|
+ local subtree1 = subtree:add(sensor_protocol, buffer(), "INSTANCE "..i)
|
|
|
|
|
|
-- dissect voltage (4 bytes for float)
|
|
|
local voltage = buffer(offset, 4):le_float() -- Float type is 4 bytes (32 bits)
|
|
@@ -487,7 +487,7 @@ local subtree = tree:add(sensor_protocol, buffer(), "SENSOR QUEUE ID 13")
|
|
|
-- Loop through the data (num_of_instance could represent the number of instances or packets to dissect)
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree1 = subtree:add(sensor_dissector, buffer(), "INSTANCE "..i)
|
|
|
+ local subtree1 = subtree:add(sensor_protocol, buffer(), "INSTANCE "..i)
|
|
|
|
|
|
-- dissect voltage (4 bytes for float)
|
|
|
local voltage = buffer(offset, 4):le_float() -- Float type is 4 bytes (32 bits)
|
|
@@ -549,7 +549,7 @@ local subtree = tree:add(sensor_protocol, buffer(), "SENSOR QUEUE ID 15")
|
|
|
-- Loop through the data (num_of_instance could represent the number of instances or packets to dissect)
|
|
|
for i = 1, num_of_instance do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree1 = subtree:add(temp_epoch_protocol, buffer(), "INSTANCE"..i)
|
|
|
+ local subtree1 = subtree:add(sensor_protocol, buffer(), "INSTANCE"..i)
|
|
|
|
|
|
-- dissect temperature (4 bytes for float)
|
|
|
local temperature = buffer(offset, 4):le_float() -- Float type is 4 bytes (32 bits)
|