|
@@ -157,10 +157,10 @@ function adcs_dissector_0(buffer, pinfo, tree, adcs_protocol, offset, num_of_ins
|
|
|
fss_sram_current_field
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
-- Dissect status
|
|
|
local status = buffer(offset, 1):le_uint()
|
|
|
subtree:add(status_field, status)
|
|
@@ -214,10 +214,11 @@ function adcs_dissector_1(buffer, pinfo, tree, adcs_protocol, offset, num_of_ins
|
|
|
f_5v_current,
|
|
|
f_vbat_current
|
|
|
}
|
|
|
- --local subtree = tree:add(adcs_protocol, buffer(),"ADCS queue id 1")
|
|
|
-
|
|
|
+
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
+
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
local operation_status = buffer(offset, 1):le_uint()
|
|
|
subtree:add(f_operation_status, operation_status)
|
|
|
offset = offset + 1
|
|
@@ -265,10 +266,10 @@ function adcs_dissector_2(buffer, pinfo, tree, adcs_protocol, offset, num_of_ins
|
|
|
f_rw_current_2,
|
|
|
f_rw_current_3
|
|
|
}
|
|
|
- -- local subtree = tree:add(adcs_protocol, buffer(),"ADCS queue id 2")
|
|
|
-
|
|
|
+ local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
+
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
local operation_status = buffer(offset, 1):le_uint()
|
|
|
subtree:add(f_operation_status, operation_status)
|
|
|
offset = offset + 1
|
|
@@ -319,10 +320,10 @@ adcs_protocol.fields = {
|
|
|
f_magnetorquer_current,
|
|
|
f_cube_star_mcu_temp }
|
|
|
|
|
|
- -- local subtree = tree:add(adcs_protocol, buffer(),"ADCS queue id 3")
|
|
|
+ local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
subtree:add(f_operation_status, buffer(offset, 1):le_uint())
|
|
|
offset = offset + 1 -- Update offset
|
|
|
|
|
@@ -358,10 +359,10 @@ function adcs_dissector_4(buffer, pinfo, tree, adcs_protocol, offset, num_of_ins
|
|
|
-- Add the fields to the protocol
|
|
|
adcs_protocol.fields = { f_operation_status, f_epoch_time, f_mcu_temperature, f_magnetometer_temperature, f_redundant_magnetometer_temperature }
|
|
|
|
|
|
- -- local subtree = tree:add(adcs_protocol, buffer(),"ADCS queue id 4")
|
|
|
+ local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
subtree:add(f_operation_status, buffer(offset, 1):le_uint()) -- 1 bytes for Operation Status (UINT)
|
|
|
offset = offset + 1
|
|
|
|
|
@@ -396,10 +397,10 @@ function adcs_dissector_5(buffer, pinfo, tree, adcs_protocol, offset, num_of_ins
|
|
|
-- Add the fields to the protocol
|
|
|
adcs_protocol.fields = { f_operation_status, f_epoch_time, f_raw_mag_x, f_raw_mag_y, f_raw_mag_z }
|
|
|
|
|
|
---local subtree = tree:add(adcs_protocol, buffer(),"ADCS queue id 5")
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
-- Operation Status (1 bytes, unsigned)
|
|
|
subtree:add(f_operation_status, buffer(offset, 1):le_uint())
|
|
|
offset = offset + 1
|
|
@@ -559,10 +560,11 @@ adcs_protocol.fields = {
|
|
|
f_rate_sensor_failure
|
|
|
}
|
|
|
|
|
|
- --local subtree = tree:add(adcs_protocol, buffer(),"ADCS queue id 6")
|
|
|
+ local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
+
|
|
|
subtree:add(f_operation_status, buffer(offset, 1):le_uint())
|
|
|
offset = offset + 1
|
|
|
subtree:add(f_epoch_time, buffer(offset, 4):le_uint())
|
|
@@ -726,10 +728,10 @@ local f_z_sun_vector = ProtoField.float("adcs_protocol.z_sun_vector", "Z Sun Vec
|
|
|
-- Register fields to the protocol
|
|
|
adcs_protocol.fields = { f_operation_status, f_epoch_time, f_x_sun_vector, f_y_sun_vector, f_z_sun_vector }
|
|
|
|
|
|
---local subtree = tree:add(adcs_protocol, buffer(),"ADCS queue id 7")
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
subtree:add(f_operation_status, buffer(offset, 1):le_uint()) -- 1 byte for Operation Status
|
|
|
offset = offset + 1 -- Update offset
|
|
|
|
|
@@ -787,10 +789,10 @@ adcs_protocol.fields = { f_operation_status,
|
|
|
f_css_ad_value_10
|
|
|
}
|
|
|
|
|
|
---local subtree = tree:add(adcs_protocol, buffer(),"ADCS queue id 8")
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
subtree:add(f_operation_status, buffer(offset, 1):le_uint()) -- 1 byte for Operation Status
|
|
|
offset = offset + 1 -- Update offset
|
|
|
|
|
@@ -834,10 +836,10 @@ adcs_protocol.fields = {
|
|
|
f_operation_status, f_epoch_time,
|
|
|
f_sun_x, f_sun_y, f_sun_z }
|
|
|
|
|
|
---local subtree = tree:add(adcs_protocol, buffer(),"ADCS queue id 9")
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
subtree:add(f_operation_status, buffer(offset, 1):le_uint())
|
|
|
offset = offset + 1 -- Update offset
|
|
@@ -884,10 +886,10 @@ adcs_protocol.fields = {
|
|
|
f_fss_detection_result
|
|
|
}
|
|
|
|
|
|
---local subtree = tree:add(adcs_protocol, buffer(),"ADCS queue id 10")
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
-local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
subtree:add(f_operation_status, buffer(offset, 1):le_uint())
|
|
|
offset = offset + 1 -- Update offset
|
|
|
|
|
@@ -935,10 +937,10 @@ adcs_protocol.fields = {
|
|
|
f_z_axis_nadir_vector
|
|
|
}
|
|
|
|
|
|
---local subtree = tree:add(adcs_protocol, buffer(),"ADCS queue id 11")
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
subtree:add(f_operation_status, buffer(offset, 1):le_uint())
|
|
|
offset = offset + 1 -- Update offset
|
|
|
|
|
@@ -991,10 +993,10 @@ adcs_protocol.fields = {
|
|
|
f_nadir_detection_result
|
|
|
}
|
|
|
|
|
|
---local subtree = tree:add(adcs_protocol, buffer(),"ADCS queue id 12")
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
subtree:add(f_operation_status, buffer(offset, 1):le_uint())
|
|
|
offset = offset + 1 -- Update offset
|
|
|
|
|
@@ -1041,10 +1043,10 @@ adcs_protocol.fields = {
|
|
|
f_magnetic_field_z
|
|
|
}
|
|
|
|
|
|
---local subtree = tree:add(adcs_protocol, buffer(),"ADCS queue id 13")
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
subtree:add(f_operation_status, buffer(offset, 1):le_uint())
|
|
|
offset = offset + 1 -- Update offset
|
|
|
|
|
@@ -1085,9 +1087,10 @@ function adcs_dissector_32(buffer, pinfo, tree, adcs_protocol, offset, num_of_in
|
|
|
adcs_protocol.fields = {
|
|
|
f_op_status, f_epoch_time, f_eci_x_velocity, f_eci_y_velocity, f_eci_z_velocity
|
|
|
}
|
|
|
-for i = 1, num_of_instance do
|
|
|
+ local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
+for i = 0, num_of_instance - 1 do
|
|
|
-- Add the operation data subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
-- dissect operation status (1 byte, UINT)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
|
subtree:add(f_op_status, op_status)
|
|
@@ -1114,23 +1117,6 @@ for i = 1, num_of_instance do
|
|
|
offset = offset + 2
|
|
|
end
|
|
|
end
|
|
|
---------------------------------------------------------------------------------------------------------------------------------------
|
|
|
-
|
|
|
-
|
|
|
--- Define the dissector function for the Nadir Sensor Data
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
--------------------------------------------------------------------------------------------------------------------------
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
----------------------------------------------------------------------------------------------
|
|
|
-
|
|
|
-
|
|
|
---
|
|
|
----------------------------------------------------------------------------------------------------------------
|
|
|
function adcs_dissector_31(buffer, pinfo, tree, adcs_protocol, offset, num_of_instance)
|
|
|
-- Define ProtoFields for each field in the structure
|
|
@@ -1144,9 +1130,12 @@ function adcs_dissector_31(buffer, pinfo, tree, adcs_protocol, offset, num_of_in
|
|
|
adcs_protocol.fields = {
|
|
|
f_op_status, f_epoch_time, f_eci_x_coord, f_eci_y_coord, f_eci_z_coord
|
|
|
}
|
|
|
- for i = 1, num_of_instance do
|
|
|
+
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
+
|
|
|
+ for i = 0, num_of_instance - 1 do
|
|
|
-- Add the operation data coordinates subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte, UINT)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -1193,10 +1182,12 @@ adcs_protocol.fields = {
|
|
|
f_op_status, f_epoch_time, f_x_coord, f_y_coord, f_z_coord
|
|
|
}
|
|
|
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
+
|
|
|
-- Loop through the data (data3 could represent the number of iterations or packets to dissect)
|
|
|
- for i = 1, num_of_instance do
|
|
|
+ for i = 0, num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -1226,7 +1217,6 @@ adcs_protocol.fields = {
|
|
|
end
|
|
|
----------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
--- wrong number 29
|
|
|
|
|
|
-- Define the dissector function for the new structure
|
|
|
function adcs_dissector_22(buffer, pinfo, tree, adcs_protocol, offset, num_of_instance)
|
|
@@ -1243,10 +1233,12 @@ adcs_protocol.fields = {
|
|
|
f_op_status, f_epoch_time, f_roll_angle, f_pitch_angle, f_yaw_angle
|
|
|
}
|
|
|
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
+
|
|
|
-- Loop through the data (data3 could represent the number of iterations or packets to dissect)
|
|
|
- for i = 1, num_of_instance do
|
|
|
+ for i = 0, num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -1297,10 +1289,12 @@ adcs_protocol.fields = {
|
|
|
f_op_status, f_epoch_time, f_innovation_x, f_innovation_y, f_innovation_z
|
|
|
}
|
|
|
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
+
|
|
|
-- Loop through the data (data3 could represent the number of iterations or packets to dissect)
|
|
|
- for i = 1,num_of_instance do
|
|
|
+ for i = 0,num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -1349,10 +1343,12 @@ adcs_protocol.fields = {
|
|
|
f_op_status, f_epoch_time, f_x_gyro_bias, f_y_gyro_bias, f_z_gyro_bias
|
|
|
}
|
|
|
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
+
|
|
|
-- Loop through the data (data3 could represent the number of iterations or packets to dissect)
|
|
|
- for i = 1, num_of_instance do
|
|
|
+ for i = 0, num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -1401,11 +1397,12 @@ adcs_protocol.fields = {
|
|
|
f_op_status, f_epoch_time, f_q1_error, f_q2_error, f_q3_error
|
|
|
}
|
|
|
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
-- Loop through the data (data3 could represent the number of iterations or packets to dissect)
|
|
|
- for i = 1, num_of_instance do
|
|
|
+ for i = 0, num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -1454,10 +1451,12 @@ adcs_protocol.fields = {
|
|
|
f_op_status, f_epoch_time, f_x_magnetic_field, f_y_magnetic_field, f_z_magnetic_field
|
|
|
}
|
|
|
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
+
|
|
|
-- Loop through the data (data3 could represent the number of iterations or packets to dissect)
|
|
|
- for i = 1, num_of_instance do
|
|
|
+ for i = 0, num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -1506,11 +1505,12 @@ adcs_protocol.fields = {
|
|
|
f_op_status, f_epoch_time, f_geo_longitude, f_geo_latitude, f_geo_altitude
|
|
|
}
|
|
|
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
-- Loop through the data (data3 could represent the number of iterations or packets to dissect)
|
|
|
- for i = 1, num_of_instance do
|
|
|
+ for i = 0, num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -1602,11 +1602,13 @@ function adcs_dissector_20(buffer, pinfo, tree, adcs_protocol, offset, num_of_in
|
|
|
f_est_attitude_q1, f_est_attitude_q2, f_est_attitude_q3,
|
|
|
f_catalogue_number, f_x_centroid, f_y_centroid, f_sample_period
|
|
|
}
|
|
|
+
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
-- Loop through the data (data3 could represent the number of iterations or packets to dissect)
|
|
|
- for i = 1, num_of_instance do
|
|
|
+ for i = 0, num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -1756,10 +1758,11 @@ local f_z_magnetorquer_time = ProtoField.int16("MagnetorquerData.z_magnetorquer_
|
|
|
adcs_protocol.fields = {
|
|
|
f_op_status, f_epoch_time, f_x_magnetorquer_time, f_y_magnetorquer_time, f_z_magnetorquer_time
|
|
|
}
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
-for i = 1,num_of_instance do
|
|
|
+for i = 0,num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -1803,10 +1806,11 @@ local f_wheel_speed = ProtoField.uint16("ReactionWheelData.wheel_speed_", "Measu
|
|
|
adcs_protocol.fields = {
|
|
|
f_op_status, f_epoch_time, f_num_reaction_wheels, f_wheel_speed
|
|
|
}
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
-for i = 1,num_of_instance do
|
|
|
+for i = 0,num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -1852,10 +1856,12 @@ adcs_protocol.fields = {
|
|
|
f_op_status, f_epoch_time, f_num_reaction_wheels,f_wheel_speed_cmd
|
|
|
}
|
|
|
|
|
|
-for i = 1, num_of_instance do
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
+
|
|
|
+for i = 0, num_of_instance - 1 do
|
|
|
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -1880,7 +1886,6 @@ for i = 1, num_of_instance do
|
|
|
end
|
|
|
end
|
|
|
end
|
|
|
------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
--------------------------------------------------------------------------------------------------------
|
|
|
--2.2.1.2.15 ADCS_HM_FINE_EST_ANG_RATES 14-19
|
|
@@ -1899,9 +1904,11 @@ adcs_protocol.fields = {
|
|
|
f_op_status, f_epoch_time, f_x_angular_rate, f_y_angular_rate, f_z_angular_rate
|
|
|
}
|
|
|
|
|
|
-for i = 1, num_of_instance do
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
+
|
|
|
+for i = 0, num_of_instance - 1 do
|
|
|
-- Add the Fine Estimated Angular Rates data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -1945,11 +1952,13 @@ function adcs_dissector_12(buffer, pinfo, tree, adcs_protocol, offset, num_of_in
|
|
|
adcs_protocol.fields = {
|
|
|
f_op_status, f_epoch_time, f_x_rate_temp, f_y_rate_temp, f_z_rate_temp
|
|
|
}
|
|
|
+
|
|
|
+ local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
-- Loop to process multiple data3 (if needed, as per your structure)
|
|
|
- for i = 1, num_of_instance do
|
|
|
+ for i = 0, num_of_instance - 1 do
|
|
|
-- Add the data structure as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -1994,10 +2003,12 @@ function adcs_dissector_11(buffer, pinfo, tree, adcs_protocol, offset, num_of_in
|
|
|
f_op_status, f_epoch_time, f_mcu_temp, f_mag_temp, f_red_mag_temp
|
|
|
}
|
|
|
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
+
|
|
|
-- Loop to process multiple data3 (if needed, as per your structure)
|
|
|
- for i = 1, num_of_instance do
|
|
|
+ for i = 0, num_of_instance - 1 do
|
|
|
-- Add the data structure as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -2039,10 +2050,10 @@ function adcs_dissector_21(buffer, pinfo, tree, adcs_protocol, offset, num_of_in
|
|
|
-- Add the fields to the protocol
|
|
|
adcs_protocol.fields = { f_operation_status, f_epoch_time, f_mcu_temperature, f_magnetometer_temperature, f_redundant_magnetometer_temperature }
|
|
|
|
|
|
- --local subtree = tree:add(adcs_protocol, buffer(),"ADCS queue id 21")
|
|
|
+ local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
for i = 0, num_of_instance - 1 do
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
subtree:add(f_operation_status, buffer(offset, 1):le_uint()) -- 1 bytes for Operation Status (UINT)
|
|
|
offset = offset + 1
|
|
@@ -2080,10 +2091,12 @@ function adcs_dissector_18(buffer, pinfo, tree, adcs_protocol, offset, num_of_in
|
|
|
f_op_status, f_epoch_time, f_est_rate_x, f_est_rate_y, f_est_rate_z
|
|
|
}
|
|
|
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
+
|
|
|
-- Loop through the data (num_of_instance represents the number of instances to dissect)
|
|
|
- for i = 1, num_of_instance do
|
|
|
+ for i = 0, num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -2127,11 +2140,13 @@ function adcs_dissector_17(buffer, pinfo, tree, adcs_protocol, offset, num_of_in
|
|
|
adcs_protocol.fields = {
|
|
|
f_op_status, f_epoch_time, f_raw_rate_x, f_raw_rate_y, f_raw_rate_z
|
|
|
}
|
|
|
+
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
|
|
|
-- Loop through the data (num_of_instance represents the number of instances to dissect)
|
|
|
- for i = 1, num_of_instance do
|
|
|
+ for i = 0, num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -2173,10 +2188,12 @@ function adcs_dissector_16(buffer, pinfo, tree, adcs_protocol, offset, num_of_in
|
|
|
f_op_status, f_epoch_time, f_measured_rate_x, f_measured_rate_y, f_measured_rate_z
|
|
|
}
|
|
|
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
+
|
|
|
-- Loop through the data (num_of_instance represents the number of instances to dissect)
|
|
|
- for i = 1, num_of_instance do
|
|
|
+ for i = 0, num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|
|
@@ -2222,10 +2239,12 @@ function adcs_dissector_15(buffer, pinfo, tree, adcs_protocol, offset, num_of_in
|
|
|
f_op_status, f_epoch_time, f_raw_mag_x, f_raw_mag_y, f_raw_mag_z
|
|
|
}
|
|
|
|
|
|
+local subtree1 = tree:add(adcs_protocol, buffer(), "ADCS")
|
|
|
+
|
|
|
-- Loop through the data (num_of_instance represents the number of instances to dissect)
|
|
|
- for i = 1, num_of_instance do
|
|
|
+ for i = 0, num_of_instance - 1 do
|
|
|
-- Add the new structure data as a subtree
|
|
|
- local subtree = tree:add(adcs_protocol, buffer(), "INSTANCE" ..i)
|
|
|
+ local subtree = subtree1:add(adcs_protocol, buffer(), "INSTANCE " ..i)
|
|
|
|
|
|
-- dissect operation status (1 byte)
|
|
|
local op_status = buffer(offset, 1):le_uint()
|