diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index e5163762..920dbb42 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -456,22 +456,22 @@ void get_tlm_fox() { if (mode == FSK) { rs_frame[j][i] = b[ctr3 % dataLen]; -/// update_rs(parities[j], b[ctr3 % dataLen]); + update_rs(parities[j], b[ctr3 % dataLen]); } else // BPSK if ((int)(ctr3/dataLen) == 3) { rs_frame[j][i] = b_max[ctr3 % dataLen]; - /// update_rs(parities[j], b_max[ctr3 % dataLen]); + update_rs(parities[j], b_max[ctr3 % dataLen]); } else if ((int)(ctr3/dataLen) == 4) { rs_frame[j][i] = b_min[ctr3 % dataLen]; - /// update_rs(parities[j], b_min[ctr3 % dataLen]); + update_rs(parities[j], b_min[ctr3 % dataLen]); } else { rs_frame[j][i] = b[ctr3 % dataLen]; - /// update_rs(parities[j], b[ctr3 % dataLen]); + update_rs(parities[j], b[ctr3 % dataLen]); } { }