rs232串口crc程序代码,直接可以使用
2019-12-21 22:02:43 5.25MB rs232CRC校验
1
CRC纠错原理及其matlab仿真,CRC(Cyclical Redundancy Checking)循环冗余校验码是一种重要的线性分组码, 通过多项式除法检测错误, 是在数据通信和数据 压缩中广泛应用的检错校验的循环码。 本文讨论了CRC 的基本原理, 纠错检错方法及其算法分析, 最后以( 7, 3) 码为例对CRC 实行Matlab 仿真。
2019-12-21 22:01:05 148KB crc
1
I am from the days when computer engineers and scientists had to write assembly language on IBM mainframes to develop high-performance programs. Programs were written on punch cards and compilation was a one-day process; you dropped o your punch-code written program and picked up the results the next day. If there was an error, you did it again. In those days, a good programmer had to understand the underlying machine hardware to produce good code. I get a little nervous when I see computer science students being taught only at a high abstraction level and languages like Ruby. Although abstraction is a beautiful thing to develop things without getting bogged down with unnecessary details, it is a bad thing when you are trying to develop super high performance code. Since the introduction of the rst CPU, computer architects added incredible features into CPU hardware to \forgive" bad programming skills; while you had to order the sequence of machine code instructions by hand two decades ago, CPUs do that in hardware for you today (e.g., out of order processing). A similar trend is clearly visible in the GPU world. Most of the techniques that were taught asperformance improvement techniquesin GPU programming ve years ago (e.g., thread divergence, shared memory bank conicts, and reduced usage of atomics) are becoming less relevant with the improved GPU architectures because GPU architects are adding hardware features that are improving these previous ineciencies so much that it won’t even matter if a programmer is sloppy about it within another 5{10 years. However, this is just a guess. What GPU architects can do depends on their (i)transistor budget, as well as (ii) their customers’ demands. When I saytransistor budget, I am referring to how many transistors the GPU manufacturers can cram into an Integrated Circuit (IC), aka a \chip." When I saycustomer demands, I mean that even if they can implement a feature, the applications that their customers are using might not
2019-12-21 21:54:28 4.97MB GPU CUDA Parallel
1
带有crc16校验的串口程序。用c语言编写。
2019-12-21 21:53:12 7KB rs232 crc校验
1
matlab CRC校验代码,亲自编写,支持16位校验,参照C代码编写,可用。
2019-12-21 21:47:51 638B matlab crc 串口通信
1
功能:输入多个8bit数据,输出16bitCRC值,用的多项式是CRC8005,通过修改例程中的某字节(程序中有注明),可以实现CRC1021
2019-12-21 21:42:32 199KB CRC fpga Verilo
1
CRC8校验程序 /********************************************************************************************************* ** Function name: CountCrc ** Descriptions: CRC校验码计算子程序 ** input parameters: 无 ** output parameters: 无 ** Returned value: *********************************************************************************************************/ 生成多项式:X8 + X2 + X + 1
2019-12-21 21:41:32 5.63MB CRC X8 + X2
1
此代码的亮点在于CRC 全网只有我一份带CRC校验的源程序,直接能用。 * 文 件 名: SHT75.C * 创 建 者: Kaiser * 描 述 : 访问SHT75 * 最后修改: 2016年9月5日
2019-12-21 21:33:40 7KB SHT75 温湿度 CRC
1
进制转换工具:二进制、八进制、十进制和十六进制之间的转换;ASCII码与HEX转换;CRC8、16、32生成;MD5生成;大小写转换。
2019-12-21 21:33:29 133KB 进制转换 工具
1
输入校验多项式和二进制信号,输出校验码,其实编写很简单
2019-12-21 21:32:27 288B MATLAB CRC 校验码
1