AP_Volz_Protocol: bugfix with scaling integer

This commit is contained in:
kfruson 2024-11-07 14:49:02 -07:00 committed by Peter Hall
parent cc1ebe6529
commit 34b306e107
1 changed files with 2 additions and 2 deletions

View File

@ -140,8 +140,8 @@ private:
float secondary_current;
float primary_voltage;
float secondary_voltage;
uint16_t motor_temp_deg;
uint16_t pcb_temp_deg;
int16_t motor_temp_deg;
int16_t pcb_temp_deg;
} data[NUM_SERVO_CHANNELS];
uint32_t last_log_ms;
} telem;