AP_NMEA_Output: remove pointless use of intermediate res variables
This commit is contained in:
parent
8c7414e932
commit
939407a26f
@ -167,24 +167,15 @@ void AP_NMEA_Output::update()
|
||||
continue;
|
||||
}
|
||||
|
||||
if (gga_res != -1) {
|
||||
_uart[i]->write(gga);
|
||||
_uart[i]->write(gga_end);
|
||||
}
|
||||
_uart[i]->write(gga);
|
||||
_uart[i]->write(gga_end);
|
||||
|
||||
if (rmc_res != -1) {
|
||||
_uart[i]->write(rmc);
|
||||
_uart[i]->write(rmc_end);
|
||||
}
|
||||
_uart[i]->write(rmc);
|
||||
_uart[i]->write(rmc_end);
|
||||
}
|
||||
|
||||
if (gga_res != -1) {
|
||||
free(gga);
|
||||
}
|
||||
|
||||
if (rmc_res != -1) {
|
||||
free(rmc);
|
||||
}
|
||||
free(gga);
|
||||
free(rmc);
|
||||
}
|
||||
|
||||
#endif // HAL_NMEA_OUTPUT_ENABLED
|
||||
|
Loading…
Reference in New Issue
Block a user