Files
LM-Middleware/HexcalMC/Program.cs
T
zhengxuan.zhang 08daf2ced4 格式化代码
2024-02-21 17:05:21 +08:00

40 lines
851 B
C#

using System;
using System.Windows.Forms;
////////////////////////////////////////////////////////////////////////////////////////////////////
//
//
//开发说明
// V0.1 2023/04/10
//---------------------------------------
//1、初版构建
//2、调用流程: 开启TCP服务端、连接到平台轴启用—》hexcal软件连接,开启校准通讯流程—》移动至到位后反馈—》hexcal逻辑处理—》hexcal校准完成关系—》软件关闭
//
//
//
//
//
//
//
//
//
//
//
//
//
////////////////////////////////////////////////////////////////////////////////////////////////////
namespace HexcalMC
{
internal static class Program
{
[STAThread]
private static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainFrom());
}
}
}