aboutsummaryrefslogtreecommitdiff
path: root/teensy/common.h
blob: 6e3e66f6bf6df9e62212fdd66b4e9bac1abcf045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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_