aboutsummaryrefslogtreecommitdiff
path: root/teensy/teensy_common.h
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-05-10 00:28:14 -0400
committeriamcheeseman <[email protected]>2026-05-10 00:28:14 -0400
commit576bd27e11ec70bdbd1b9a644d2e227b57586337 (patch)
tree2dc41e3f88bb95568f73ee372fc35512afcbcf9b /teensy/teensy_common.h
parent9ed5698b3c74c7ce1784d3bebe2aa73d5a0c319d (diff)
i ain't splitting alla this up
Diffstat (limited to 'teensy/teensy_common.h')
-rw-r--r--teensy/teensy_common.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/teensy/teensy_common.h b/teensy/teensy_common.h
new file mode 100644
index 0000000..dc631cb
--- /dev/null
+++ b/teensy/teensy_common.h
@@ -0,0 +1,15 @@
+#ifndef TEENSY_COMMON_H_
+#define TEENSY_COMMON_H_
+
+#include <assert.h>
+#include <stdbool.h>
+#include <stdint.h>
+#include <stdlib.h>
+
+#include "teensy_log.h"
+#include "teensy_mem.h"
+
+#define TY_PI 3.14
+#define TY_DEG2RAD (180 / PI)
+
+#endif // TEENSY_COMMON_H_