-
WINDOWS 串口编程 调试程序 第二部分
WINDOWS 串口编程 调试程序 第二部分-WINDOWS serial programming the second part of the debugger
- 2022-05-16 04:37:00下载
- 积分:1
-
Mirror filters are designed to achieve opt_filter function subband decomposition...
设计了镜像滤波器opt_filter函数来实现子带分解与合成。取N=256,
nbands=16,调用滤波器函数完成子带分解与合成-Mirror filters are designed to achieve opt_filter function subband decomposition and synthesis. Take N = 256, nbands = 16, call the filter function and achieve Synthesis Subband Decomposition
- 2022-05-07 18:52:38下载
- 积分:1
-
DLNA的开发者指南。
DLNA developers guidelines.
- 2022-03-14 03:29:23下载
- 积分:1
-
obtain the fourier series
obtain the fourier series
- 2022-07-15 05:26:23下载
- 积分:1
-
API串口读写模块 这是用VB编的通过API来对串口进行读写操作
API串口读写模块 这是用VB编的通过API来对串口进行读写操作-API to read and write serial port using VB module which is made through the API to read and write serial port operation
- 2022-04-09 20:44:32下载
- 积分:1
-
SerialComOCX RS232串口通信控件,很好用
SerialComOCX RS232串口通信控件,很好用-failed to translate
- 2022-03-14 07:16:01下载
- 积分:1
-
使用Matlab编写的viterbi译码程序,希望对大家有用。
使用Matlab编写的viterbi译码程序,希望对大家有用。-use Matlab prepared by the Viterbi decoding procedures in the hope that useful for all.
- 2023-07-25 15:30:03下载
- 积分:1
-
(2,1,3) Convolutional Codes built a simple system for correcting display can be...
(2,1,3)卷积码搭建了简单的系统来进行纠错展示,可以实现从编码,加入错误,译码,输入输出码字对比等基本功能,另外加入了交互模块,用户可以自己设定错误比特的数目和位置,使纠错功能显而易见.-(2,1,3) Convolutional Codes built a simple system for correcting display can be realized from coding, joined errors, decoding, the input and output code contrast basic functions, adding to its interactive modules, Users can set their own errors and the number of bits, so that error-correcting functions obvious.
- 2022-03-18 10:02:55下载
- 积分:1
-
STM32 BOOTLOAD 远程升级引导部分
1.通过gsm接收firmware数据,在bootload中完成写flash和跳转,这是bootload部分。
2.基于STM32F103VCT6平台。
3.编译工具是IAR 5.6版本。
- 2022-02-01 10:58:10下载
- 积分:1
-
两台电脑简单通信
很简单的源码,通过C++实现两台电脑的简单通信,希望对大家有帮助,#include
#include
#pragma comment(lib,"ws2_32.lib")
void main()
{
WORD wVersionRequested;
WSADATA wsaData;
int err;
wVersionRequested = MAKEWORD( 1, 1 );//请求1.1版本的winsock库
err = WSAStartup( wVersionRequested, &wsaData );
if ( err != 0 ) {
return;
}
if ( LOBYTE( wsaData.wVersion ) != 1 ||
HIBYTE( wsaData.wVersion ) != 1 ) {
WSACleanup( );
return;
}
&n
- 2022-03-20 09:13:36下载
- 积分:1