10 lines
162 B
C
10 lines
162 B
C
|
|
#ifndef DRONE_H_INCLUDED
|
|
#define DRONE_H_INCLUDED
|
|
#include <stdint.h>
|
|
|
|
struct __attribute__((packed)) drone_slot {
|
|
uint8_t pitch;
|
|
uint8_t env;
|
|
};
|
|
#endif
|