stock mbed AnalogReads current loop closed and working

Dependencies:   mbed

Fork of priustroller_2 by N K

util/fastmath.h

Committer:
bwang
Date:
2016-01-31
Revision:
56:85a26f839af2
Parent:
11:dccbaa9274c5

File content as of revision 56:85a26f839af2:

#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