Loranet packet forwarder exits when receiving packet with unkown datarate

Hello everyone. I intend to create a new post about a similar issue using Semtech’s Packet Forwarder (https://github.com/Lora-net/packet_forwarder).

After many hours of operation, i observed below issue:
pkt_fwd_stop

Suddenly stopped running.

Had anyone else, same issue?
Any idea about,what may happened?

Regards,
Nikos.

  1. This is totally unrelated to the thread you are posting this in, I’m moving it to a new topic.

  2. From the log and the code it looks pretty obvious what happened:

                        MSG("ERROR: [up] lora packet with unknown datarate\n");
                        memcpy((void *)(buff_up + buff_index), (void *)",\"datr\":\"SF?", 12);
                        buff_index += 12;
                        exit(EXIT_FAILURE);

Your log shows the software got a packet with an unknown datarate and the code shows that is considered a a failure that should result in exit of the software.