• 大小:
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-11
  • 语言: C#
  • 标签: C#  

资源简介

C# 串口例子,含有Modbus通讯,已经过测试,保证可用

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Regularexpressions;

namespace 串口测试
{
    public class CRC_16
    {
        public byte[] Check_CRC(byte[] Data)                //CRC16计算方法
        {
            byte CRC_L = 0xFF;
            byte CRC_H = 0xFF;                              //CRC寄存器 
            byte SH;
            byte SL;
            byte[] Temp = Data;
            int j;
            for (int i = 0; i < Temp.Length; i++)
            {
                CRC_L = (byte)(CRC_L ^ Temp[i]);             //每一个数据与CRC寄存器进行异或 
                for (j = 0; j < 8; j++)
                {
                    SH = CRC_H;
                    SL = CRC_L;
                    CRC_H = (byte)(CRC_H >> 1);             

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     627200  2012-08-23 09:06  bin\Debug\串口测试.exe

     文件      46592  2012-08-23 09:06  bin\Debug\串口测试.pdb

     文件      11600  2012-08-23 09:06  bin\Debug\串口测试.vshost.exe

     文件        490  2012-08-23 09:06  bin\Debug\串口测试.vshost.exe.manifest

     文件       4440  2012-08-23 09:06  obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       6356  2012-08-23 09:06  obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件       1042  2012-08-23 09:06  obj\x86\Debug\GenerateResource.read.1.tlog

     文件        922  2012-08-23 09:06  obj\x86\Debug\GenerateResource.write.1.tlog

     文件       7897  2012-08-23 09:06  obj\x86\Debug\ResolveAssemblyReference.cache

     文件       1889  2012-08-23 09:06  obj\x86\Debug\串口测试.csproj.FileListAbsolute.txt

     文件     627200  2012-08-23 09:06  obj\x86\Debug\串口测试.exe

     文件     302996  2012-08-23 09:06  obj\x86\Debug\串口测试.Frm_Port.resources

     文件      46592  2012-08-23 09:06  obj\x86\Debug\串口测试.pdb

     文件        180  2012-08-23 09:06  obj\x86\Debug\串口测试.Properties.Resources.resources

     文件       1445  2012-08-23 09:06  Properties\AssemblyInfo.cs

     文件       2872  2012-08-23 09:06  Properties\Resources.Designer.cs

     文件       5612  2012-08-23 09:06  Properties\Resources.resx

     文件       1095  2012-08-23 09:06  Properties\Settings.Designer.cs

     文件        249  2012-08-23 09:06  Properties\Settings.settings

     文件       2910  2012-08-23 09:06  CRC_16.cs

     文件        897  2012-08-23 09:06  Data_Convert.cs

     文件     302430  2012-08-23 09:06  Devil.ico

     文件       7444  2012-08-23 09:06  Frm_Port.cs

     文件      21109  2012-08-23 09:06  Frm_Port.Designer.cs

     文件     463840  2012-08-23 09:06  Frm_Port.resx

     文件       4945  2012-08-23 09:06  from.gif

     文件        496  2012-08-23 09:06  Program.cs

     文件        720  2012-08-23 09:06  SP_Initialize.cs

     文件       5816  2012-08-23 09:06  串口测试.csproj

     文件        478  2012-08-23 09:06  串口测试.csproj.user

............此处省略11个文件信息

评论

共有 条评论