-
fenxuan
这是自己收集的一些有关信号分选的比较优秀的毕业论文,希望对需要的人有所帮助(Some comparison of the signal sorting excellent thesis)
- 2010-06-02 16:46:29下载
- 积分:1
-
FD-LBM[1]
The code includes finite difference and lattice boltzmann method.
- 2020-11-13 09:19:44下载
- 积分:1
-
MFC数字签名源码
MFC数字签名源码,拖动需要签字的程序,会自动生成一个已经签字的程序,是一款比较实用的工具,还有扩展的空间,需要的话拿去用吧
- 2023-07-10 14:30:02下载
- 积分:1
-
ProgressCtrlEX
对C++ progress控件的扩展,可以设置进度条的颜色,字体。可在进度条上直接设置百分比进度(The extension of the control of C++ progress, you can set the color of the progress bar, font. Percentage of progress can be set directly on the progress bar)
- 2013-01-23 16:27:16下载
- 积分:1
-
BLDC_contorl_2812_closeloop
TMS320F2812 BLDC closeloop drive
- 2014-09-19 11:21:22下载
- 积分:1
-
环形缓冲区
【实例简介】
纯C开发环形缓冲区,经过大量的测试,很实用的模块。可以在任意C编译器下编译,用于任意嵌入式单片机。
- 2021-06-12 00:31:22下载
- 积分:1
-
Keys_CE_VB_2440
Key access VB application for Windows CE on S3C2440
- 2008-08-14 21:17:38下载
- 积分:1
-
200562241642141
说明: 遍历文件夹并建成目录树,一个非常好的例子(Traverse Folder and build the directory tree, a very good example)
- 2008-11-26 18:55:39下载
- 积分:1
-
下位机程序
温控系统完整代码,基于STM32F103C8T6(Complete Code of Temperature Control System)
- 2018-12-10 23:11:36下载
- 积分:1
-
触摸屏
void gui_fill_circle(u16 x0,u16 y0,u16 r,u16 color)
{
u32 i;
u32 imax = ((u32)r*707)/1000+1;
u32 sqmax = (u32)r*(u32)r+(u32)r/2;
u32 x=r;
gui_draw_hline(x0-r,y0,2*r,color);
for (i=1;isqmax)// draw lines from outside
{
if (x>imax)
{
gui_draw_hline (x0-i+1,y0+x,2*(i-1),color);
gui_draw_hline (x0-i+1,y0-x,2*(i-1),color);
}
x--;
}
// draw lines from inside (center)
gui_draw_hline(x0-x,y0+i,2*x,color);
gui_draw_hline(x0-x,y0-i,2*x,color);
}
}
//两个数之差的绝对值
//x1,x2:需取差值的两个数
//返回值:|x1-x2|
u16 my_abs(u16 x1,u16 x2)
{
if(x1>x2)return x1-x2;
else return x2-x1;
}
//画一条粗线
//(x1,y1),(x2,y2):线条的起始坐标
//size:线条的粗细程度
//color:线条的颜色
void lcd_draw
- 2022-08-08 02:20:29下载
- 积分:1