diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-11-24 10:17:52 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-11-24 10:17:52 -0500 |
commit | 6395d1d18b2fe0ece82f3b82c35648b0419378c2 (patch) | |
tree | 386a022bbbf1a0ead2ef53b215660c3e0bc45f25 /source/adc.hpp | |
parent | f559e9fbef98e16ebf4d72190322ca110f4940be (diff) |
oversample for lower rates; add iir templates
Diffstat (limited to 'source/adc.hpp')
-rw-r--r-- | source/adc.hpp | 5 |
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 }; |