-
Notifications
You must be signed in to change notification settings - Fork 0
/
Server.h
35 lines (30 loc) · 838 Bytes
/
Server.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// #ifndef UDP_SERVER_H
// #define UDP_SERVER_H
// #include <boost/asio.hpp>
// #include <iostream>
// namespace ly
// {
// /**
// * @brief 根据VOFA+
// *
// */
// struct PoseDataFrame
// {
// float fdata[2]; // pitch, yaw数据
// unsigned char tail[4]{0x00, 0x00, 0x80, 0x7f};
// };
// class UDP_Server
// {
// public:
// UDP_Server(unsigned short port);
// ~UDP_Server();
// void write(PoseDataFrame &poseDataFrame);
// private:
// boost::asio::io_service io_service_;
// boost::asio::ip::udp::socket socket_;
// boost::asio::ip::udp::endpoint remote_endpoint_;
// // 注意,需要新增加一个帧尾,所以需要为3
// char posedata[3 * sizeof(float)];
// };
// }
// #endif