資源簡介
C# 串口例子,含有Modbus通訊,已經(jīng)過測試,保證可用
代碼片段和文件信息
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計(jì)算方法
????????{
????????????byte?CRC_L?=?0xFF;
????????????byte?CRC_H?=?0xFF;??????????????????????????????//CRC寄存器?
????????????byte?SH;
????????????byte?SL;
????????????byte[]?Temp?=?Data;
????????????int?j;
????????????for?(int?i?=?0;?i?????????????{
????????????????CRC_L?=?(byte)(CRC_L?^?Temp[i]);?????????????//每一個(gè)數(shù)據(jù)與CRC寄存器進(jìn)行異或?
????????????????for?(j?=?0;?j?8;?j++)
????????????????{
????????????????????SH?=?CRC_H;
????????????????????SL?=?CRC_L;
????????????????????CRC_H?=?(byte)(CRC_H?>>?1);?????????????
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件?????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個(gè)文件信息
- 上一篇:Zebra 實(shí)現(xiàn)
- 下一篇:SHAPEMAP shp文件
評論
共有 條評論