18#include "fota_error.h"
26#define PAYLOAD_SIZE 256
28typedef enum { HEADER_PACKET, DATA_PACKET, ERROR_PACKET } PacketType;
31 PacketType packet_type;
33 uint16_t payload_length;
34 uint8_t payload[PAYLOAD_SIZE];
FotaError
FOTA Error code definitions.
Definition: fota_error.h:26
Definition: fota_packet.h:29