Prius IPM controller

Dependencies:   mbed

Fork of analoghalls5_5 by N K

util/fastmath.h

Committer:
bwang
Date:
2015-03-08
Revision:
11:dccbaa9274c5
Parent:
fastmath.h@ 9:d3b70c15baa9

File content as of revision 11:dccbaa9274c5:

#ifndef __FASTMATH_H
#define __FASTMATH_H

#include "includes.h"
#include "lut.h"

namespace FastMath {
    float FastSin(float theta);
    float FastCos(float theta);
    float FastSin01(float theta);
    float FastCos01(float theta);
};

#endif