important fix for getter function
This commit is contained in:
parent
15687f6f6e
commit
190848d00e
@ -73,7 +73,7 @@ namespace spacepacket {
|
|||||||
|
|
||||||
constexpr uint16_t getSpacePacketIdFromApid(bool isTc, uint16_t apid,
|
constexpr uint16_t getSpacePacketIdFromApid(bool isTc, uint16_t apid,
|
||||||
bool secondaryHeaderFlag = true) {
|
bool secondaryHeaderFlag = true) {
|
||||||
return (((isTc << 5) & 0x10) | ((secondaryHeaderFlag << 4) & 0x08) |
|
return ((isTc << 4) | (secondaryHeaderFlag << 3) |
|
||||||
((apid >> 8) & 0x07)) << 8 | (apid & 0x00ff);
|
((apid >> 8) & 0x07)) << 8 | (apid & 0x00ff);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user