More improvements for gps handler #400

Merged
muellerr merged 6 commits from improvements_gps_handler into develop 2023-02-26 18:20:30 +01:00
Showing only changes of commit a6af6174f4 - Show all commits

View File

@ -24,7 +24,7 @@ void TmFunnelBase::addDestination(const char *name, const AcceptsTelemetryIF &do
ReturnValue_t TmFunnelBase::sendPacketToDestinations(store_address_t origStoreId,
TmTcMessage &message,
const uint8_t *packetData, size_t size) {
ReturnValue_t result;
ReturnValue_t result = returnvalue::OK;
for (unsigned int idx = 0; idx < destinations.size(); idx++) {
const auto &dest = destinations[idx];
if (destinations.size() > 1) {