Fixed packet size with appended CRC

This commit is contained in:
Thomas Kolb 2024-05-31 18:36:16 +02:00
parent f6404dd0ea
commit 24bc1f8140

View file

@ -296,7 +296,7 @@ int main(int argc, char **argv)
crc_append_key(PAYLOAD_CRC_SCHEME, packetbuf, ret);
LOG(LVL_DEBUG, "Transmitting packet with %d bytes.", ret);
LOG(LVL_DEBUG, "Transmitting packet with %d bytes.", ret + crc_size);
RESULT_CHECK(layer1_tx_reset(&tx));