2020-04-11 18:42:07 +02:00
|
|
|
|
|
|
|
#ifndef DRONE_H_INCLUDED
|
|
|
|
#define DRONE_H_INCLUDED
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2020-04-13 11:11:17 +02:00
|
|
|
void drone_mute(void);
|
|
|
|
|
2020-04-11 18:42:07 +02:00
|
|
|
struct __attribute__((packed)) drone_slot {
|
|
|
|
uint8_t pitch;
|
|
|
|
uint8_t env;
|
|
|
|
};
|
|
|
|
#endif
|