diff options
author | clyne <clyne@bitgloo.com> | 2020-07-16 20:21:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-16 20:21:36 -0400 |
commit | 17cda07f3ef79069e9bed2eca6c20f2b7fcb60b9 (patch) | |
tree | 7e787e1b24100d539631a04993e1d6b53ac31f72 /source/adc.hpp | |
parent | 43c53c1122c64da20bbc6f54d2a087f5a457f669 (diff) | |
parent | f07e878cd23e6e35743358ea306951f2218653a4 (diff) |
Merge pull request #1 from tcsullivan/gui
Gui
Diffstat (limited to 'source/adc.hpp')
-rw-r--r-- | source/adc.hpp | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/source/adc.hpp b/source/adc.hpp index 456e697..9989883 100644 --- a/source/adc.hpp +++ b/source/adc.hpp @@ -21,9 +21,53 @@ struct ADCdConfig : public ADCConfig ADCd *adcdinst; }; +enum class ADCdRate : unsigned int { + R2P5, + R6P5, + R12P5, + R24P5, + R47P5, + R92P5, + R247P5, + R640P5 +}; + class ADCd { public: + constexpr static const unsigned int CLOCK_RATE = 40000000; + constexpr static unsigned int SAMPLES_PER_SECOND(ADCdRate rate) { + unsigned int sps = 0; + switch (rate) { + case ADCdRate::R2P5: + sps = 15; + break; + case ADCdRate::R6P5: + sps = 19; + break; + case ADCdRate::R12P5: + sps = 25; + break; + case ADCdRate::R24P5: + sps = 37; + break; + case ADCdRate::R47P5: + sps = 60; + break; + case ADCdRate::R92P5: + sps = 105; + break; + case ADCdRate::R247P5: + sps = 260; + break; + case ADCdRate::R640P5: + sps = 653; + break; + } + + return static_cast<unsigned int>(1.f / (sps / static_cast<float>(CLOCK_RATE))); + } + constexpr explicit ADCd(ADCDriver& adcd, GPTDriver& gptd) : m_adcd(&adcd), m_gptd(&gptd), m_adc_config{}, m_adc_group_config(ADC_GROUP_CONFIG), @@ -31,6 +75,7 @@ public: void start(); adcsample_t *getSamples(adcsample_t *buffer, size_t count); + void setSampleRate(ADCdRate rate); private: static const GPTConfig m_gpt_config; @@ -43,6 +88,8 @@ private: bool m_is_adc_finished; void initPins(); + //void selectPins(bool a0, bool a1); + static void adcEndCallback(ADCDriver *adcd); constexpr static const ADCConversionGroup ADC_GROUP_CONFIG = { |