aboutsummaryrefslogtreecommitdiffstats
path: root/gui/stmdsp.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 /gui/stmdsp.hpp
parenteeeb04fa1a202c68279d4b4ee0a1e3ff34c62c7f (diff)
support H7 and L4; use second ADC for input
Diffstat (limited to 'gui/stmdsp.hpp')
-rw-r--r--gui/stmdsp.hpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/gui/stmdsp.hpp b/gui/stmdsp.hpp
index a22a55d..d56a1ab 100644
--- a/gui/stmdsp.hpp
+++ b/gui/stmdsp.hpp
@@ -39,6 +39,13 @@ namespace stmdsp
using adcsample_t = uint16_t;
using dacsample_t = uint16_t;
+ enum class platform {
+ Unknown,
+ H7,
+ L4,
+ G4
+ };
+
class device
{
public:
@@ -52,8 +59,7 @@ namespace stmdsp
return m_serial.isOpen();
}
- //std::vector<adcsample_t> sample(unsigned long int count = 1);
-
+ auto get_platform() const { return m_platform; }
void continuous_set_buffer_size(unsigned int size);
unsigned int get_buffer_size() const { return m_buffer_size; }
void set_sample_rate(unsigned int id);
@@ -76,6 +82,7 @@ namespace stmdsp
private:
serial::Serial m_serial;
+ platform m_platform = platform::Unknown;
unsigned int m_buffer_size = SAMPLES_MAX;
bool m_is_siggening = false;
};