
/*
 * ap_math.h
 *
 *  Created on: 31 Jan 2016
 *      Author: Mike
 */

#ifndef INC_AP_MATH_H_
#define INC_AP_MATH_H_

#define AP_K 256
#define AP_SCALE(x) ((x)/AP_K)
extern void ap_init(void);

extern int ap_sin(int x);
extern int ap_cos(int x);



#endif /* INC_AP_MATH_H_ */
