EdSaGfmvA/include/lora/lorapacket.h
2025-07-22 16:08:55 +02:00

11 lines
191 B
C

#ifndef LORA_PACKET_H
#define LORA_PACKET_H
#include <stdint.h>
typedef struct {
char message[20];
uint32_t timestamp;
} __attribute__((packed)) DataPacket;
#endif // LORA_PACKET_H