Farm-Data-Relay-System/fdrs_types.h

12 lines
198 B
C
Raw Normal View History

2022-06-21 19:04:05 +00:00
#ifndef __FDRS_TYPES_H__
2022-06-21 19:12:46 +00:00
#define __FDRS_TYPES_H__
2022-06-21 19:04:05 +00:00
#include <stdint.h>
2022-06-21 19:04:05 +00:00
typedef struct __attribute__((packed)) DataReading {
float data;
uint16_t id;
uint8_t type;
} DataReading;
#endif