aboutsummaryrefslogtreecommitdiffstats
path: root/source/adc.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2020-11-24 10:17:52 -0500
committerClyne Sullivan <clyne@bitgloo.com>2020-11-24 10:17:52 -0500
commit6395d1d18b2fe0ece82f3b82c35648b0419378c2 (patch)
tree386a022bbbf1a0ead2ef53b215660c3e0bc45f25 /source/adc.hpp
parentf559e9fbef98e16ebf4d72190322ca110f4940be (diff)
oversample for lower rates; add iir templates
Diffstat (limited to 'source/adc.hpp')
-rw-r--r--source/adc.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/adc.hpp b/source/adc.hpp
index a739059..5f9dc23 100644
--- a/source/adc.hpp
+++ b/source/adc.hpp
@@ -22,12 +22,11 @@ public:
using Operation = void (*)(adcsample_t *buffer, size_t count);
enum class Rate : int {
- //R8K = 0,
- R16K = 0,
+ R8K = 0,
+ R16K,
R20K,
R32K,
R48K,
- R60K,
R96K
};