-
大小: 263KB文件类型: .rar金币: 1下载: 0 次发布日期: 2021-05-19
- 语言: 其他
- 标签: Serialport 串口通信 text文档
资源简介
通过Serialport空间自动接收串口通信的数据,有CRC16位数据校验,可设置串口名,波特率等,主要是接收到的数据以追加的形式保存到了text文档中,文档以当天日期命名。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CRC校验16位
{
public interface ICRC
{
long Value
{
get;
}
void Reset();
void Crc(int bval);
void Crc(byte[] buffer);
void Crc(byte[] buf int off int len);
}
///
/// CRC16 的摘要说明。
///
public class CRC16 : ICRC
{
#region CRC 16 位校验表
///
/// 16 位校验表 Upper 表
///
public ushort[] uppercrctab = new ushort[]
{
0x00000x12310x24620x36530x48c40x5af50x6ca60x7e97
0x91880x83b90xb5ea0xa7db0xd94c0xcb7d0xfd2e0xef1f
};
///
/// 16 位校验表 Lower 表
///
public ushort[] lowercrctab = new ushort[]
{
0x00000x10210x20420x30630x40840x50a50x60c60x70e7
0x81080x91290xa14a0xb16b0xc18c0xd1ad0xe1ce0xf1ef
};
#endregion
ushort crc = 0;
///
/// 校验后的结果
///
public long Value
{
get
{
return crc;
}
set
{
crc = (ushort)value;
}
}
///
/// 设置crc 初始值
///
public void Reset()
{
crc = 0;
}
///
/// Crc16
///
///
///
public void Crc(ushort ucrc byte[] buf)
{
crc = ucrc;
Crc(buf);
}
///
/// Crc16
///
///
public void Crc(int bval)
{
ushort h = (ushort)((crc >> 12) & 0x0f);
ushort l = (ushort)((crc >> 8) & 0x0f);
ushort temp = crc;
temp = (ushort)(((temp & 0x00ff) << 8) | bval);
temp = (ushort)(temp ^ (uppercrctab[(h - 1) + 1] ^ lowercrctab[(l - 1) + 1]));
crc = temp;
}
///
/// Crc16
///
///
public void Crc(byte[] buffer)
{
Crc(buffer 0 buffer.Length);
}
///
/// Crc16
///
///
///
///
public void Crc(byte[] buf int off int len)
{
if (buf == null)
{
throw new ArgumentNullException(“buf“);
}
if (off < 0 || len < 0 || off + len > buf.Length)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5632 2012-07-13 08:48 串口通讯测试\CRC校验16位\bin\Debug\app.publish\Application Files\CRC校验16位_1_0_0_0\CRC校验16位.exe.deploy
文件 7263 2012-07-13 08:48 串口通讯测试\CRC校验16位\bin\Debug\app.publish\Application Files\CRC校验16位_1_0_0_0\CRC校验16位.exe.manifest
文件 5367 2012-07-13 08:48 串口通讯测试\CRC校验16位\bin\Debug\app.publish\CRC校验16位.application
文件 495024 2012-07-13 08:48 串口通讯测试\CRC校验16位\bin\Debug\app.publish\setup.exe
文件 1649 2012-07-13 08:58 串口通讯测试\CRC校验16位\bin\Debug\CRC校验16位.application
文件 5632 2012-07-13 08:58 串口通讯测试\CRC校验16位\bin\Debug\CRC校验16位.exe
文件 3622 2012-07-13 08:58 串口通讯测试\CRC校验16位\bin\Debug\CRC校验16位.exe.manifest
文件 15872 2012-07-13 08:58 串口通讯测试\CRC校验16位\bin\Debug\CRC校验16位.pdb
文件 11608 2011-12-27 14:44 串口通讯测试\CRC校验16位\bin\Debug\CRC校验16位.vshost.exe
文件 490 2010-03-17 22:39 串口通讯测试\CRC校验16位\bin\Debug\CRC校验16位.vshost.exe.manifest
文件 4390 2012-07-13 08:58 串口通讯测试\CRC校验16位\CRC校验16位.csproj
文件 451 2012-07-13 08:58 串口通讯测试\CRC校验16位\CRC校验16位.csproj.user
文件 1668 2012-07-13 08:48 串口通讯测试\CRC校验16位\CRC校验16位_TemporaryKey.pfx
文件 1649 2012-07-13 08:58 串口通讯测试\CRC校验16位\obj\x86\Debug\CRC校验16位.application
文件 1618 2012-07-13 08:48 串口通讯测试\CRC校验16位\obj\x86\Debug\CRC校验16位.csproj.FileListAbsolute.txt
文件 5632 2012-07-13 08:58 串口通讯测试\CRC校验16位\obj\x86\Debug\CRC校验16位.exe
文件 3622 2012-07-13 08:58 串口通讯测试\CRC校验16位\obj\x86\Debug\CRC校验16位.exe.manifest
文件 15872 2012-07-13 08:58 串口通讯测试\CRC校验16位\obj\x86\Debug\CRC校验16位.pdb
文件 6001 2012-08-22 14:21 串口通讯测试\CRC校验16位\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 3483 2011-12-26 16:33 串口通讯测试\CRC校验16位\Program.cs
文件 1370 2011-12-26 16:24 串口通讯测试\CRC校验16位\Properties\AssemblyInfo.cs
文件 18432 2012-08-22 10:32 串口通讯测试\SerialportSample\bin\Debug\SerialportSample.exe
文件 36352 2012-08-22 10:32 串口通讯测试\SerialportSample\bin\Debug\SerialportSample.pdb
文件 11600 2012-08-22 14:21 串口通讯测试\SerialportSample\bin\Debug\SerialportSample.vshost.exe
文件 490 2010-03-17 22:39 串口通讯测试\SerialportSample\bin\Debug\SerialportSample.vshost.exe.manifest
文件 11702 2011-02-26 04:24 串口通讯测试\SerialportSample\Form1.cs
文件 18276 2011-02-26 04:24 串口通讯测试\SerialportSample\Form1.Designer.cs
文件 6011 2011-02-26 04:24 串口通讯测试\SerialportSample\Form1.resx
文件 4440 2011-12-19 12:36 串口通讯测试\SerialportSample\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6399 2012-08-22 14:21 串口通讯测试\SerialportSample\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
............此处省略41个文件信息
- 上一篇:双闭环v-m调速系统设计.doc
- 下一篇:基于vhdl的拔河游戏机设计
相关资源
- 串口通信-温湿度
- STM8 UART 半双工串口通信
- mySerialPort.rar
- verilog 实现串口通信 含fifo很好用!
- fpga串口通信,利用fifo转发
- 带串口通信的温度控制器(带proteus仿
- 51 单片机串口通信程序,RS232串口通信
- LabVIEW与USB串口通信源代码
- 51单片机串口通信并用数码管显示接收
- QT5串口通信程序源码
- STM32 USART1 USART2 UASRT3 UART4 UART5串口通信
- QT串口通信实例62216
- 基于Proteus的温度传感器串口通信仿真
- 串口通信串口助手发送指令控制单片
- 两个单片机之间实现串口通信,包括
- XFS5152语音合成配套程序 C51 串口通信
- QT开发的串口通讯软件(基于qextseri
- 利用msp430g2553进行串口通信
- 单片机AD 转换 和 串口通信汇编语言
- modbus通讯协议进行温湿度数据的采集
- 用QT做的LINUX下串口通信测试可用
- STC15F2K60S2串口通信程序
- 解决了关闭死锁的CSerialPort类项目
- 基于MSP430的模拟SPI串口通信的实现
- STC15W-408AS_EEPROM与串口通信
- SerialPort.zip
- Unicode串口通信Demo
- VHDL设计的串口通信程序
- FPGA 串口通信RS232
- 安卓串口通信开发第三方库libserial_
评论
共有 条评论