Update cubesatsim.ino

pull/152/head
alanbjohnston 4 years ago committed by GitHub
parent d2aefb02b7
commit df0828ec94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -356,6 +356,7 @@ void get_tlm_fox() {
current_max[count1] = current[count1];
// printf("Vmin %4.2f Vmax %4.2f Imin %4.2f Imax %4.2f \n", voltage_min[count1], voltage_max[count1], current_min[count1], current_max[count1]);
Serial.print(voltage_min[count1]);
Serial.print(" ");
}
Serial.println(" ");
for (int count1 = 0; count1 < 3; count1++) {
@ -363,9 +364,11 @@ void get_tlm_fox() {
other_min[count1] = other[count1];
if (other[count1] > other_max[count1])
other_max[count1] = other[count1];
// printf("Other min %f max %f \n", other_min[count1], other_max[count1]);
Serial.print(other_min[count1]);
Serial.print(" ");
}
if (mode == FSK)
Serial.println(" ");
if (mode == FSK)
{
if (loop_count % 32 == 0) { // was 8 /// was loop now loop_count
Serial.println("Sending MIN frame");

Loading…
Cancel
Save

Powered by TurnKey Linux.