3-byte TX status packet

when the sending radio sends and receives the TX status packet what is that packet terminated with?

i want to check for that byte to capture this status packet.

i could also check for the start byte and grab the next 2 bytes but the usart lib i’m using has a function to check for the last delimeter byte. seems backwards to me but …

not a big deal, i can write a wrapper to check for the first byte but was wondering if the end byte was something like a \r or
or something?

tia

API packets don’t have terminators - the last character is the checksum. To parse any packet, check the start byte and then read the length and go from there.

pretty much thought so but wanted to be sure.

thanks!