Rev 2248 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2248 | - | 1 | /***************************************************************************************************************************** |
2 | * File: mymath.h |
||
3 | * Purpose: header of mymath.c |
||
4 | *****************************************************************************************************************************/ |
||
5 | #ifndef _MYMATH_H |
||
6 | #define _MYMATH_H |
||
7 | |||
8 | #include <inttypes.h> |
||
9 | |||
10 | extern int16_t c_sin_8192(int16_t angle); |
||
11 | extern int16_t c_cos_8192(int16_t angle); |
||
12 | extern int16_t c_atan2(int16_t y, int16_t x); |
||
13 | extern uint32_t c_sqrt(uint32_t a); |
||
14 | |||
15 | #endif |
||
16 | // EOF: _MYMATH_H ************************************************************************************************************* |