aboutsummaryrefslogtreecommitdiff
path: root/teensy/teensy_common.h
blob: dc631cb07e7e78f2c890a5441228274eacbef060 (plain)
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_