diff options
| author | iamcheeseman <[email protected]> | 2026-05-08 19:30:44 -0400 |
|---|---|---|
| committer | iamcheeseman <[email protected]> | 2026-05-08 19:30:44 -0400 |
| commit | 5625a8626fe303748b205c80f87035593cf2f561 (patch) | |
| tree | 5e5a5adb6f1265358ae21ec47cd384362345df5a /teensy/common.h | |
Initial commit
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_ |
