From d64036c0510cf06009a7252e318d828fbc2658f0 Mon Sep 17 00:00:00 2001
From: mrDarker <mr.darker@163.com>
Date: 星期四, 11 九月 2025 09:22:02 +0800
Subject: [PATCH] Merge branch 'clh' into liuyang
---
SourceCode/Bond/Servo/CSVData.h | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/SourceCode/Bond/Servo/CSVData.h b/SourceCode/Bond/Servo/CSVData.h
new file mode 100644
index 0000000..c3efdc5
--- /dev/null
+++ b/SourceCode/Bond/Servo/CSVData.h
@@ -0,0 +1,22 @@
+#pragma once
+
+
+namespace SERVO {
+ class CSVData
+ {
+ public:
+ CSVData();
+ virtual ~CSVData();
+
+ public:
+ std::string& getTime();
+ std::vector<uint8_t>& getSVRawData();
+ int serialize(char* pszBuffer, int nBufferSize);
+ int unserialize(const char* pszBuffer, int nBufferSize);
+
+ private:
+ std::string m_strTime;
+ std::vector<uint8_t> m_svRawData;
+ };
+}
+
--
Gitblit v1.9.3