diff options
Diffstat (limited to 'teensy/common.h')
| -rw-r--r-- | teensy/common.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/teensy/common.h b/teensy/common.h new file mode 100644 index 0000000..6e3e66f --- /dev/null +++ b/teensy/common.h @@ -0,0 +1,14 @@ +#ifndef COMMON_H_ +#define COMMON_H_ + +#include <stdbool.h> +#include <stdint.h> +#include <stdlib.h> + +#include "log.h" +#include "mem.h" + +#define TY_PI 3.14 +#define TY_DEG2RAD (180 / PI) + +#endif // COMMON_H_ |
