-
thinking.in.flexible.engineering
thinking.in.flexible.engineering 大道至简 向你讲述 软件开发中 的两个内容:做什么和为什么做(thinking.in.flexible.engineering Road to SR telling you about the software development of two elements : what to do and why to do)
- 2007-04-22 10:36:09下载
- 积分:1
-
SystemView
用systemview进行仿真的各种实例(systemview)
- 2021-01-05 23:58:53下载
- 积分:1
-
嵌入式零树小波编码标准的例子
Example of Embedded Zerotree Wavelet encoding in ANSI-C
- 2022-09-27 22:55:02下载
- 积分:1
-
CRC16
说明: 单片机 C语言,汇编语言CRC16,MODBUS校验(MCU C Language, Assembly Language CRC16, MODBUS Verification)
- 2019-03-01 10:04:58下载
- 积分:1
-
this a test program
this a test program-this is a test program.........
- 2022-02-10 16:48:13下载
- 积分:1
-
ADS8364-EVM
ads8364 AD Convert Board EVM
- 2012-04-01 23:53:35下载
- 积分:1
-
cgoc231
By Riccardo Pareschi, 系统研究2 读大量的Windows环境信息,有文档及源代码,(By Riccardo Pareschi, 2 read a large amount of Windows environment information system research, documentation and source code,)
- 2017-04-11 03:38:25下载
- 积分:1
-
Calendar
万年历(0-9999)(每行打印2个月)。(Calendar (0 to 9999) (2 months each line of print).)
- 2013-03-06 11:48:25下载
- 积分:1
-
OFDM-channel-estimation
通过LS和DFT方法对OFDM实现了信道估计,并对估计后的信道同原始信道进行对比,还有不同信噪比下的误码仿真(Through LS and DFT method to achieve the OFDM channel estimation, and the estimated channel compared with the original channel, as well as the BER simulation under different signal to noise ratio )
- 2017-05-08 10:50:49下载
- 积分:1
-
VC++ 删除目录、文件夹
VC++ 删除目录或文件夹的例子。删除指定的文件夹目录的源码,请在文本框中输入需要删除的目录名称、路径即可,路径不要错哦,本示例主要是演示如何删除文件,在易用性方面没过多完善。
//是文件时直接删除
if (!file.IsDots() && !file.IsDirectory())
DeleteFile(file.GetFilePath());
else if (file.IsDots())
continue;
else if (file.IsDirectory())
{
path = file.GetFilePath();
//是目录时,继续递归调用函数删除该目录下的文件
DelFolder(path);
//目录为空后删除目录
RemoveDirectory(path);
}
- 2022-01-22 03:11:03下载
- 积分:1