pull/78/head
alanbjohnston 5 years ago committed by GitHub
parent f4155d1f0f
commit d3ec5b3749
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1340,37 +1340,38 @@ void get_tlm_fox() {
// printf("Other min %f max %f \n", other_min[count1], other_max[count1]); // printf("Other min %f max %f \n", other_min[count1], other_max[count1]);
} }
} // just moved again if (loop % 8 == 0) {
if (mode == FSK) { printf("Sending MIN frame \n");
if (loop % 8 == 0) { frm_type = 0x03;
printf("Sending MIN frame \n"); for (int count1 = 0; count1 < 17; count1++) {
frm_type = 0x03; if (count1 < 3)
for (int count1 = 0; count1 < 17; count1++) { other[count1] = other_min[count1];
if (count1 < 3) if (count1 < 8) {
other[count1] = other_min[count1]; voltage[count1] = voltage_min[count1];
if (count1 < 8) { current[count1] = current_min[count1];
voltage[count1] = voltage_min[count1]; }
current[count1] = current_min[count1]; if (sensor_min[count1] != 1000.0) // make sure values are valid
sensor[count1] = sensor_min[count1];
} }
if (sensor_min[count1] != 1000.0) // make sure values are valid
sensor[count1] = sensor_min[count1];
} }
} if ((loop + 4) % 8 == 0) {
if ((loop + 4) % 8 == 0) { printf("Sending MAX frame \n");
printf("Sending MAX frame \n"); frm_type = 0x02;
frm_type = 0x02; for (int count1 = 0; count1 < 17; count1++) {
for (int count1 = 0; count1 < 17; count1++) { if (count1 < 3)
if (count1 < 3) other[count1] = other_max[count1];
other[count1] = other_max[count1]; if (count1 < 8) {
if (count1 < 8) { voltage[count1] = voltage_max[count1];
voltage[count1] = voltage_max[count1]; current[count1] = current_max[count1];
current[count1] = current_max[count1]; }
if (sensor_max[count1] != -1000.0) // make sure values are valid
sensor[count1] = sensor_max[count1];
} }
if (sensor_max[count1] != -1000.0) // make sure values are valid }
sensor[count1] = sensor_max[count1]; }
}
} // if (mode == FSK) { // remove this
} // }
memset(rs_frame, 0, sizeof(rs_frame)); memset(rs_frame, 0, sizeof(rs_frame));
memset(parities, 0, sizeof(parities)); memset(parities, 0, sizeof(parities));
/* /*
@ -1424,9 +1425,6 @@ void get_tlm_fox() {
if (payload == ON) if (payload == ON)
STEMBoardFailure = 0; STEMBoardFailure = 0;
// if (payload == ON)
// STEMBoardFailure = 0;
// read payload sensor if available // read payload sensor if available
encodeA(b, 0 + head_offset, batt_a_v); encodeA(b, 0 + head_offset, batt_a_v);

Loading…
Cancel
Save

Powered by TurnKey Linux.