Fixed output size of transmission_filter_packet()

This commit is contained in:
Thomas Kolb 2022-01-29 22:13:49 +01:00
parent d522a1d6bd
commit f983635c14
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ result_t transmission_filter_packet(
firinterp_crcf_execute(ctx->rrc_interp, packet[i], output + (RRC_SPS*i));
}
*output_size = RRC_SPS*TRANSMISSION_RAMP_DOWN_LEN;
*output_size = RRC_SPS*packet_size;
return OK;
}