|
@@ -56,6 +56,7 @@ TC_TM_PROTOCOL.fields = {
|
|
|
|
|
|
-- Total Number of Error Groups (1 byte)
|
|
|
subtree1:add(f_total_error_groups, buffer(offset, 1):le_uint())
|
|
|
+ subtree1:add(" ")
|
|
|
offset = offset + 1
|
|
|
|
|
|
-- Dissect each error group based on the description
|
|
@@ -86,6 +87,7 @@ TC_TM_PROTOCOL.fields = {
|
|
|
end
|
|
|
end
|
|
|
offset = offset + 4
|
|
|
+ subtree1:add(" ")
|
|
|
|
|
|
-- Group AHW_SET-1
|
|
|
local error_group_ahw_set_1 = buffer(offset, 1):uint()
|
|
@@ -140,6 +142,7 @@ TC_TM_PROTOCOL.fields = {
|
|
|
end
|
|
|
end
|
|
|
offset = offset + 4
|
|
|
+ subtree1:add(" ")
|
|
|
|
|
|
-- Group AHW_SET-2
|
|
|
local error_group_ahw_set_2 = buffer(offset, 1):uint()
|
|
@@ -163,6 +166,7 @@ TC_TM_PROTOCOL.fields = {
|
|
|
end
|
|
|
end
|
|
|
offset = offset + 4
|
|
|
+ subtree1:add(" ")
|
|
|
|
|
|
local err_system_def = {
|
|
|
"ERR_IRAM_HEAP_FREE_LESSER_THAN_16K",
|
|
@@ -190,7 +194,8 @@ local err_system_def = {
|
|
|
subtree1:add(f_fault_status_system_2, temp):set_text(string.format("ERROR CODE %d : FAULT - %s",i - 1,err_system_def[i]))
|
|
|
end
|
|
|
end
|
|
|
- offset = offset + 4
|
|
|
+ offset = offset + 4
|
|
|
+ subtree1:add(" ")
|
|
|
|
|
|
-- Group SYSTEM 2
|
|
|
local error_group_system_2 = buffer(offset, 1):uint()
|
|
@@ -214,7 +219,7 @@ local err_system_def = {
|
|
|
end
|
|
|
end
|
|
|
offset = offset + 4
|
|
|
-
|
|
|
+ subtree1:add(" ")
|
|
|
|
|
|
-- Group COMMS
|
|
|
local error_group_comms = buffer(offset, 1):uint()
|
|
@@ -270,6 +275,7 @@ local err_system_def = {
|
|
|
end
|
|
|
offset = offset + 4
|
|
|
|
|
|
+ subtree1:add(" ")
|
|
|
|
|
|
-- Group ADCS
|
|
|
local error_group_adcs = buffer(offset, 1):uint()
|
|
@@ -297,6 +303,7 @@ local err_system_def = {
|
|
|
end
|
|
|
offset = offset + 4
|
|
|
|
|
|
+ subtree1:add(" ")
|
|
|
|
|
|
-- Group EPS
|
|
|
local error_group_eps = buffer(offset, 1):uint()
|