From 6f1c5203f14f82b6a10c9756ef1dc39bc8631ec0 Mon Sep 17 00:00:00 2001
From: Clyne Sullivan <clyne@bitgloo.com>
Date: Sat, 30 Oct 2021 10:12:07 -0400
Subject: remove gui (now in stmdspgui repo)

---
 gui/stmdsp.hpp | 97 ----------------------------------------------------------
 1 file changed, 97 deletions(-)
 delete mode 100644 gui/stmdsp.hpp

(limited to 'gui/stmdsp.hpp')

diff --git a/gui/stmdsp.hpp b/gui/stmdsp.hpp
deleted file mode 100644
index c15633a..0000000
--- a/gui/stmdsp.hpp
+++ /dev/null
@@ -1,97 +0,0 @@
-/**
- * @file stmdsp.hpp
- * @brief Interface for communication with stmdsp device over serial.
- *
- * Copyright (C) 2021 Clyne Sullivan
- *
- * Distributed under the GNU GPL v3 or later. You should have received a copy of
- * the GNU General Public License along with this program.
- * If not, see <https://www.gnu.org/licenses/>.
- */
-
-#ifndef STMDSP_HPP_
-#define STMDSP_HPP_
-
-#include <cstdint>
-#include <list>
-#include <serial/serial.h>
-#include <string>
-
-namespace stmdsp
-{
-    constexpr unsigned int SAMPLES_MAX = 4096;
-
-    class scanner
-    {
-    private:
-        constexpr static const char *STMDSP_USB_ID =
-#ifndef STMDSP_WIN32
-            "USB VID:PID=0483:5740";
-#else
-            "USB\\VID_0483&PID_5740";
-#endif
-
-    public:
-        std::list<std::string>& scan();
-        auto& devices() {
-            return m_available_devices;
-        }
-
-    private:
-        std::list<std::string> m_available_devices;
-    };
-
-    using adcsample_t = uint16_t;
-    using dacsample_t = uint16_t;
-
-    enum class platform {
-        Unknown,
-        H7,
-        L4,
-        G4
-    };
-
-    class device
-    {
-    public:
-        device(const std::string& file);
-
-        ~device() {
-            m_serial.close();
-        }
-
-        bool connected() {
-            return m_serial.isOpen();
-        }
-
-        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);
-        unsigned int get_sample_rate();
-        void continuous_start();
-        void continuous_start_measure();
-        uint32_t continuous_start_get_measurement();
-        std::vector<adcsample_t> continuous_read();
-        std::vector<adcsample_t> continuous_read_input();
-        void continuous_stop();
-
-        void siggen_upload(dacsample_t *buffer, unsigned int size);
-        void siggen_start();
-        void siggen_stop();
-        bool is_siggening() const { return m_is_siggening; }
-
-        // buffer is ELF binary
-        void upload_filter(unsigned char *buffer, size_t size);
-        void unload_filter();
-
-    private:
-        serial::Serial m_serial;
-        platform m_platform = platform::Unknown;
-        unsigned int m_buffer_size = SAMPLES_MAX;
-        bool m_is_siggening = false;
-    };
-}
-
-#endif // STMDSP_HPP_
-
-- 
cgit v1.2.3