300TC 机载系统 完整功能,(1)采集影像(2)采集和解析惯导数据(3)惯导磁场校正

This commit is contained in:
tangchao0503
2022-06-13 12:01:30 +08:00
commit 1452bcc2b9
21 changed files with 4316 additions and 0 deletions

13
Source_Files/main.cpp Normal file
View File

@ -0,0 +1,13 @@
#include <QCoreApplication>
#include "Header_Files/udpserver.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
//UdpServer* x=new UdpServer();
QString str="234234";
UdpServer x;
return a.exec();
}