11 lines
191 B
C
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
|