代码拉取完成,页面将自动刷新
同步操作将从 比智科技/SuperDebuger 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
/*---------------作者:Maximus Ye----------------------*/
/*---------------时间:2013年8月16日---------------*/
/*---------------邮箱:[email protected]*/
/*---------------QQ:275623749---------*/
/*本软件也耗费了我不少的时间和精力,希望各位同行们尊重个人劳动成果,
* 如果在此版本的基础上修改发布新的版本,请包含原作者信息(包括代码和UI界面相关信息),为中国的
* 开源事业做出一点贡献。*/
namespace LeafSoft
{
public partial class frmCheck : Form
{
public frmCheck()
{
InitializeComponent();
}
#region 校验码计算
/// <summary>
/// 校验和
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void MS_CheckSum_Click(object sender, EventArgs e)
{
Model.CMD cmd = txtContent.GetCMD();
if (cmd != null)
{
byte check = Lib.BytesCheck.GetXOR(cmd.Bytes);
txtContent.AppendText(Convert.ToString(check, 16).PadLeft(2, '0'));
}
}
/// <summary>
/// Modbus
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void MS_CRC16_Click(object sender, EventArgs e)
{
Model.CMD cmd = txtContent.GetCMD();
if (cmd != null)
{
AppendToContent(Lib.BytesCheck.GetCRC16(cmd.Bytes, false));
}
}
/// <summary>
/// 多项式CRC16 高位在前
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void MS_CRCPolyH_Click(object sender, EventArgs e)
{
Model.CMD cmd = txtContent.GetCMD();
if (cmd != null)
{
frmPoly fpoly = new frmPoly();
if (fpoly.ShowDialog() == DialogResult.OK)
{
AppendToContent(Lib.BytesCheck.GetCRC16ByPoly(cmd.Bytes, fpoly.Poly, true));
}
}
}
/// <summary>
/// 多项式CRC16 低位在前
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void MS_CRCPolyL_Click(object sender, EventArgs e)
{
Model.CMD cmd = txtContent.GetCMD();
if (cmd != null)
{
frmPoly fpoly = new frmPoly();
if (fpoly.ShowDialog() == DialogResult.OK)
{
AppendToContent(Lib.BytesCheck.GetCRC16ByPoly(cmd.Bytes, fpoly.Poly, false));
}
}
}
private void AppendToContent(byte[] check)
{
foreach (byte b in check)
{
txtContent.AppendText(string.Format("{0:X2}", b));
}
}
#endregion
private void CM_Clear_Click(object sender, EventArgs e)
{
txtContent.Clear();
}
private void MS_Copy_Click(object sender, EventArgs e)
{
Clipboard.SetDataObject(txtContent.Text);
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。