Subversion Repositories DashDisplay

Rev

Rev 2 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 mjames 1
/*
2
 * ap_math.h
3
 *
4
 *  Created on: 31 Jan 2016
5
 *      Author: Mike
6
 */
7
 
8
#ifndef INC_AP_MATH_H_
9
#define INC_AP_MATH_H_
10
 
11
#define AP_K 256
12
#define AP_SCALE(x) ((x)/AP_K)
13
extern void ap_init(void);
14
 
15
extern int ap_sin(int x);
16
extern int ap_cos(int x);
17
 
18
 
19
 
20
#endif /* INC_AP_MATH_H_ */