update space packet IDs

This commit is contained in:
2022-10-21 15:19:31 +02:00
parent 3cbfeb7015
commit 8028f024a4
2 changed files with 3 additions and 3 deletions

View File

@ -9,8 +9,8 @@ import enum
from spacepackets.util import UnsignedByteField
PUS_APID = 0x65
SPACE_PACKET_IDS = (0x08 << 8 | PUS_APID,)
CFDP_APID = 0x66
SPACE_PACKET_IDS = (0x08 << 8 | PUS_APID, 0x08 << 8 | CFDP_APID,)
CFDP_LOCAL_ENTITY_ID = UnsignedByteField(byte_len=2, val=1)
CFDP_REMOTE_ENTITY_ID = UnsignedByteField(byte_len=2, val=CFDP_APID)