搜索结果
找到约 2,591 项符合
while循环 的查询结果
按分类筛选
- 全部分类
- 技术资料 (789)
- 单片机开发 (241)
- 数据结构 (122)
- 单片机编程 (118)
- 其他 (102)
- 汇编语言 (87)
- matlab例程 (81)
- 编译器/解释器 (59)
- VHDL/FPGA/Verilog (57)
- 学术论文 (50)
- Java编程 (41)
- 数学计算 (39)
- 其他书籍 (38)
- 书籍 (36)
- 嵌入式/单片机编程 (35)
- VC书籍 (33)
- 加密解密 (28)
- 数值算法/人工智能 (27)
- 源码 (25)
- 软件设计/软件工程 (24)
- DSP编程 (23)
- VIP专区 (23)
- 电源技术 (22)
- Linux/Unix编程 (22)
- 微处理器开发 (21)
- 书籍源码 (20)
- 人工智能/神经网络 (20)
- 通讯/手机编程 (18)
- 操作系统开发 (17)
- 文章/文档 (17)
- 其他嵌入式/单片机内容 (14)
- 可编程逻辑 (12)
- 模拟电子 (11)
- 串口编程 (11)
- 编辑器/阅读器 (11)
- C/C++语言编程 (10)
- 通讯编程文档 (10)
- 电子书籍 (9)
- 教程资料 (9)
- 文件格式 (9)
- uCOS (9)
- 无线通信 (8)
- 通信网络 (8)
- 嵌入式综合 (8)
- 压缩解压 (8)
- 系统设计方案 (8)
- Internet/网络编程 (7)
- 教育系统应用 (7)
- 游戏 (7)
- 嵌入式Linux (7)
- 并行计算 (7)
- 软件 (6)
- 论文 (6)
- JavaScript (6)
- 笔记 (5)
- 单片机相关 (5)
- Applet (5)
- Linux/uClinux/Unix编程 (4)
- 软件工程 (4)
- 测试测量 (4)
- 电子技术 (4)
- 其他数据库 (4)
- Java书籍 (4)
- Delphi控件源码 (4)
- 邮电通讯系统 (4)
- 设计相关 (3)
- 数据库系统 (3)
- 开发工具 (3)
- 驱动编程 (3)
- *行业应用 (3)
- 网络 (3)
- FlashMX/Flex源码 (3)
- 其他行业 (3)
- 医药行业 (3)
- 中间件编程 (3)
- SQL Server (3)
- 教程 (2)
- 应用设计 (2)
- 其他 (2)
- PCB相关 (2)
- 技术书籍 (2)
- 计算机相关 (2)
- 传感与控制 (2)
- 磁盘编程 (2)
- USB编程 (2)
- VxWorks (2)
- Delphi/CppBuilder (2)
- 行业发展研究 (2)
- Jsp/Servlet (2)
- 电路图 (1)
- 经验 (1)
- 习题答案 (1)
- 电子大赛 (1)
- labview (1)
- LED驱动及控制 (1)
- 电子书籍 (1)
- 国标 (1)
- VHDL/Verilog/EDA源码 (1)
- 行业应用文档 (1)
- 接口技术 (1)
技术资料 FIR数字滤波器在TMS320VC5416DSP上的实现
· 摘要:  以窗函数法设计线性相位FIR数字滤波器为例,介绍用MATLAB工具软件设计数字滤波器的方法和在定点DSP上的实现.给出了基于TMS320VC5416的实现程序,并将其加载到实验板上实时运行.文中还讨论了定标、循环寻址等在DSP上实现的关键问题. ...
技术资料 单片机延时程序时间长度的记忆方法
在利用MCS-51汇编语言编写单片机应用程序的时候,经常会用延时子程序来配合主程序功能的实现.大部分的延时子程序采用由MOV、NOP、DJNZ指令构成的多重循环程序来实现,然而由于个人编程思路的不同,表现出延时子程序的多样性,使得延时子程序的计算呈现出不定性和复杂性. ...
技术资料 广告灯的左移右移
做单一灯的左移右移,硬件电路如图4.4.1所示,八个发光二极管L1-L8分别接在单片机的P1.0-P1.7接口上,输出“0”时,发光二极管亮,开始时P1.0→P1.1→P1.2→P1.3→┅→P1.7→P1.6→┅→P1.0亮,重复循环。
嵌入式综合 红外遥控RGB
#include "STC90.h"
#include < intrins.h >
#define uchar unsigned char
#define uint unsigned int
#define led_port P1
sbit IR_RE = P3^2;
sbit led_r = P1^3;
sbit led_g = P1^4;
sbit led_b = P1^5;
sbit led_wd = P1^7;
sbit K1 =P3^0 ; //增加键
sbit K2 =P3^1 ; ...
技术书籍 Algorithms(算法概论)pdf
This book evolved over the past ten years from a set of lecture notes developed while teaching
the undergraduate Algorithms course at Berkeley and U.C. San Diego. Our way of teaching
this course evolved tremendously over these years in a number of directions, partly to address
our students&#39; ...
其他 对c语言的简单语法分析器 文件说明: input.txt内为输入的源程序
对c语言的简单语法分析器 文件说明: input.txt内为输入的源程序,包括for,while和if else控制等 output.txt内为输出的二元单词序列 k.txt为关键字表 l.txt为运算符和界符表 i.txt为该输入的源程序的标志符 c.txt为常数表 个别表需要序列号,这时各表的序列号默认为从1开始,每行加1。 使用说明: 在提示符下输入input.txt ...
其他书籍 关于FPGA流水线设计的论文 This work investigates the use of very deep pipelines for implementing circuits in
关于FPGA流水线设计的论文
This work investigates the use of very deep pipelines for
implementing circuits in FPGAs, where each pipeline
stage is limited to a single FPGA logic element (LE). The
architecture and VHDL design of a parameterized integer
array multiplier is presented and also an IEEE 754
...
Linux/Unix编程 FIST可堆叠文件系统
FIST可堆叠文件系统,linux文件系统修改相关的开源软件,使得对linux文件系统功能的改进很简单了
The FiST (File System Translator) system combines two methods to solve the above problems in a novel way: a set of stackable file system templates for each operating system, and a high-level language that can ...
CA认证 DESProcess FILE *mfp,*cfp int ttch=0,xorRes,ttbitdiff=0 char mch,cch float bdiff=0 if
DESProcess
FILE *mfp,*cfp
int ttch=0,xorRes,ttbitdiff=0
char mch,cch
float bdiff=0
if((mfp=fopen(mfile,"r"))==NULL)
{cout<<"Cannot open the file to compare"<<endl }
if((cfp=fopen(cfile,"r"))==NULL)
{cout<<"Cannot open the file to compare"<<endl }
else
{
while(!feof(mfp)&!feof(cfp))
...
uCOS MyTask、YouTask和ThreeTask 。在主函数中创建任务MyTask。而YouTask和ThreeTask由任务MyTaskTask创建
MyTask、YouTask和ThreeTask 。在主函数中创建任务MyTask。而YouTask和ThreeTask由任务MyTaskTask创建,其优先级分别为2、4、6。这三个任务都要占用资源s,任务YouTask访问时间短一些,在任务MyTask和任务ThreeTask利用while(OSTime<T) {}增加访问时间,T值分别为300,500。MyTask、YouTask和ThreeTask采用OSTimeDly(K)延时 ...