fixed payload order

pull/114/head
alanbjohnston 5 years ago committed by GitHub
parent 1f7e208776
commit c33ee9a02d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1579,12 +1579,12 @@ void get_tlm_fox() {
rs_frame[j][i] = b[ctr3 % dataLen];
update_rs(parities[j], b[ctr3 % dataLen]);
} else // BPSK
if ((int)(ctr3/dataLen) == 4)
if ((int)(ctr3/dataLen) == 3)
{
rs_frame[j][i] = b_max[ctr3 % dataLen];
update_rs(parities[j], b_max[ctr3 % dataLen]);
}
else if ((int)(ctr3/dataLen) == 5)
else if ((int)(ctr3/dataLen) == 4)
{
rs_frame[j][i] = b_min[ctr3 % dataLen];
update_rs(parities[j], b_min[ctr3 % dataLen]);

Loading…
Cancel
Save

Powered by TurnKey Linux.