-
CRC
自己写的CRC的Verilog代码,在网上收集的crc相关的代码以及crc的matlab仿真代码(The CRC Verilog code written by myself, CRC related codes collected on the Internet and CRC matlab simulation code)
- 2020-06-17 15:42:36下载
- 积分:1
-
VB API函数
VB API函数-VB API Function
- 2022-06-16 14:20:06下载
- 积分:1
-
51单片机4*4扫描C程序
这个是51单片机4*4扫描的C程序。欢迎大家下载、试用。谢谢大家的支持!
- 2022-07-18 04:29:28下载
- 积分:1
-
11-TFT彩色屏
基于stm32l476的显示屏例程,接口为SPI,使用最新的HAL库,有cubemx工程文件可供参阅(Based on the display routine of stm32l476, the interface is SPI, using the latest HAL library, there are cubemx engineering files available for reference)
- 2020-06-20 11:00:02下载
- 积分:1
-
基于面部视频的亚健康研究中,对面部视频信息的采集程序,包括一些重要参数的获取...
基于面部视频的亚健康研究中,对面部视频信息的采集程序,包括一些重要参数的获取-Video-based facial sub-health study, pairs of facial video collection procedures, including the acquisition of some important parameters
- 2022-07-06 14:21:58下载
- 积分:1
-
ACS580使用说明书
说明: 本手册提供规划安装、安装、调试、使用和维修传动所需的信息(This manual provides information needed for planning installation, installation, commissioning, use and maintenance of the transmission)
- 2020-06-22 09:00:02下载
- 积分:1
-
下载模板无介绍栏及小图标
说明: 一款简单的下载网页模板,资源来源于网络开源,并且自己动手修改了部分,完全免费开源,如有侵权请联系我删除。(A simple download page template, resources from the open source network, and their own modifications, completely free open source, if there is infringement, please contact me to delete.)
- 2020-06-20 01:00:02下载
- 积分:1
-
lzh压缩代码的分析文档,自己分析的,毕业设计的项目,花了好多时间...
lzh压缩代码的分析文档,自己分析的,毕业设计的项目,花了好多时间-lzh compression code analysis documents, own analyze, the
graduation project project, has spend many time
- 2022-12-12 17:05:03下载
- 积分:1
-
三菱FX PLC rs232bd计算机通过串口通信程序,电缆…
三菱FX系列 PLC通过RS232BD与计算机串口通信程序,电缆最好采用原装的-Mitsubishi FX PLC RS232BD computer through serial communication procedures, Cable preferred the original
- 2022-10-11 01:45:03下载
- 积分:1
-
VC++ 6.0绘制曲线正弦波
VC++ 6.0 绘制曲线正弦波,一种比较有规律的曲线,源代码也是相当简单的好种。
//建立画笔
CPen cpen,pen;
pen.CreatePen(PS_SOLID,4,RGB(0,0,0));
cpen.CreatePen(PS_SOLID,2,RGB(0,0,255));
pDC->SelectObject(&cpen);
//指定原点
pDC->SetViewportOrg(100,245);
pDC->SetTextColor(RGB(255,0,0));
//绘制横坐标
CString sPIText[]={"-1/2π","","1/2π","π","3/2π","2π","5/2π","3π","7/2π","4π","9/2π","5π"};
for(int n=-1,nTmp=0;nTmpLineTo(60*n,0);
pDC->LineTo(60*n,-5);
pDC->MoveTo(60*n,0);
pDC->TextOut(60*n-sPIText[n+1].GetLength()*3,16,sPIText[n+1]);
}
double y,radian;
pDC->SelectObject(&pen);
for(int x=-60;xMoveTo((int)x,(int)y);
pDC->LineTo((int)x,(int)y);
}
- 2022-01-21 22:47:43下载
- 积分:1