aboutsummaryrefslogtreecommitdiffstats
path: root/source/cordic.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-03-10 19:42:18 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-03-10 19:42:18 -0500
commit1a7d45b9130251119874df8b15424ec41306d8f2 (patch)
tree6eadd9d6ef2f6ff3e4cf1854088deb8f882a0542 /source/cordic.hpp
parenteeeb04fa1a202c68279d4b4ee0a1e3ff34c62c7f (diff)
support H7 and L4; use second ADC for input
Diffstat (limited to 'source/cordic.hpp')
-rw-r--r--source/cordic.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/cordic.hpp b/source/cordic.hpp
index 755fddb..5c52fe4 100644
--- a/source/cordic.hpp
+++ b/source/cordic.hpp
@@ -1,7 +1,7 @@
#ifndef CORDIC_HPP_
#define CORDIC_HPP_
-namespace math {
+namespace cordic {
constexpr double PI = 3.1415926535L;
void init();
@@ -11,7 +11,6 @@ namespace math {
double cos(double x);
double sin(double x);
double tan(double x);
- double sqrt(double x);
}
#endif // CORDIC_HPP_