1 Commits

+7 -6
View File
@@ -60,12 +60,13 @@ from common_tmtc.pus_tc.service_20_parameters import pack_service20_commands_int
from common_tmtc.pus_tc.service_2_raw_cmd import pack_service_2_commands_into from common_tmtc.pus_tc.service_2_raw_cmd import pack_service_2_commands_into
from common_tmtc.pus_tc.service_3_housekeeping import pack_service_3_commands_into from common_tmtc.pus_tc.service_3_housekeeping import pack_service_3_commands_into
from common_tmtc.pus_tc.service_8_func_cmd import pack_service_8_commands_into from common_tmtc.pus_tc.service_8_func_cmd import pack_service_8_commands_into
from examples.tmtcc import ( from spacepackets.util import UnsignedByteField
EXAMPLE_PUS_APID,
EXAMPLE_CFDP_APID, EXAMPLE_PUS_APID = 0xEF
CFDP_LOCAL_ENTITY_ID, EXAMPLE_CFDP_APID = 0xF0
CFDP_REMOTE_ENTITY_ID, CFDP_LOCAL_ENTITY_ID = UnsignedByteField(byte_len=2, val=1)
) CFDP_REMOTE_ENTITY_ID = UnsignedByteField(byte_len=2, val=EXAMPLE_CFDP_APID)
from tmtccmd import ( from tmtccmd import (
TcHandlerBase, TcHandlerBase,
get_console_logger, get_console_logger,