CAN 配置和报文记录的功能

This commit is contained in:
2024-12-23 21:33:19 +08:00
parent 713b9b02e6
commit 8b21846424
20 changed files with 1021 additions and 114 deletions

View File

@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.Models.HighSpeed
{
/// <summary>
/// 高速片段数据
/// </summary>
public class HighFragMsg
{
public HighFragMsg()
{
ListCommMsg = new List<CommMsg>();
}
/// <summary>
/// 状态
/// </summary>
public bool State { get; set; }
/// <summary>
/// Index
/// </summary>
public int Index { get; set; }
/// <summary>
/// 小时数据
/// </summary>
public List<CommMsg> ListCommMsg { get; set; }
}
}