diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-03-21 16:33:08 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-03-21 16:33:08 -0400 |
commit | a4f1482a8b23d5f761f60d6f3821c84190d89e2f (patch) | |
tree | 746095fa69eccccdc1c2830fdd0c06bac01848f5 /source/cordic.hpp | |
parent | 1a7d45b9130251119874df8b15424ec41306d8f2 (diff) |
add pot. support; L4 trig; eagle schematic draft
Diffstat (limited to 'source/cordic.hpp')
-rw-r--r-- | source/cordic.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source/cordic.hpp b/source/cordic.hpp index 5c52fe4..5d640cc 100644 --- a/source/cordic.hpp +++ b/source/cordic.hpp @@ -6,11 +6,19 @@ namespace cordic { void init(); +#if !defined(TARGET_PLATFORM_L4) double mod(double n, double d); double cos(double x); double sin(double x); double tan(double x); +#else + float mod(float n, float d); + + float cos(float x); + float sin(float x); + float tan(float x); +#endif } #endif // CORDIC_HPP_ |