1 2 3 4 5 6 7 8 9 10 11 12 13 14 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_