aboutsummaryrefslogtreecommitdiffstats
path: root/source/usbserial.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/usbserial.hpp')
-rw-r--r--source/usbserial.hpp19
1 files changed, 12 insertions, 7 deletions
diff --git a/source/usbserial.hpp b/source/usbserial.hpp
index 4c33d51..828fc56 100644
--- a/source/usbserial.hpp
+++ b/source/usbserial.hpp
@@ -12,16 +12,21 @@
#ifndef STMDSP_USBSERIAL_HPP_
#define STMDSP_USBSERIAL_HPP_
-#include "hal.h"
+#include "usbcfg.h"
-namespace usbserial
+class USBSerial
{
- void init();
- bool is_active();
+public:
+ static void begin();
- size_t read(void *buffer, size_t count);
- size_t write(const void *buffer, size_t count);
-}
+ static bool isActive();
+
+ static size_t read(unsigned char *buffer, size_t count);
+ static size_t write(const unsigned char *buffer, size_t count);
+
+private:
+ static SerialUSBDriver *m_driver;
+};
#endif // STMDSP_USBSERIAL_HPP_