搜索结果
找到约 143 项符合
delay 的查询结果
按分类筛选
- 全部分类
- 单片机编程 (22)
- 单片机开发 (16)
- 技术资料 (11)
- matlab例程 (8)
- 3G开发 (5)
- VHDL/FPGA/Verilog (5)
- 书籍 (5)
- 其他书籍 (4)
- 通讯编程文档 (4)
- 模拟电子 (3)
- 开发工具 (3)
- 汇编语言 (3)
- 文章/文档 (3)
- 论文 (3)
- 可编程逻辑 (2)
- 设计相关 (2)
- 通讯/手机编程 (2)
- 数学计算 (2)
- 嵌入式/单片机编程 (2)
- DSP编程 (2)
- Linux/Unix编程 (2)
- 书籍源码 (2)
- 其他 (2)
- 其他嵌入式/单片机内容 (2)
- 嵌入式综合 (2)
- 源码 (2)
- VIP专区 (2)
- 其他文档 (1)
- 学术论文 (1)
- allegro (1)
- PCB相关 (1)
- 电源技术 (1)
- 通信网络 (1)
- 仿真技术 (1)
- 语音压缩 (1)
- 数值算法/人工智能 (1)
- 人工智能/神经网络 (1)
- GPS编程 (1)
- 嵌入式Linux (1)
- 串口编程 (1)
- VC书籍 (1)
- USB编程 (1)
- 压缩解压 (1)
- 其他行业 (1)
- Delphi控件源码 (1)
- 编辑器/阅读器 (1)
- 网络 (1)
- 自动化控制 (1)
- DSP工具/软件 (1)
文章/文档 具有消抖功能的秒表程序
具有消抖功能的秒表程序,可以通过按键来设定初始时间,比delay更加精确
编辑器/阅读器 #include <avr/io.h> #include <avr/interrupt.h> #include <avr/signal.h> #include
#include <avr/io.h>
#include <avr/interrupt.h>
#include <avr/signal.h>
#include <avr/sleep.h>
#include <avr/pgmspace.h>
#include <string.h>
#include <util/delay.h>
#include <avr/eeprom.h>
#include <stdio.h>
#include "defines.h"
通讯编程文档 This is a simulator written in Tcl to simulate a network node carrying GSM and GPRS traffics with Qo
This is a simulator written in Tcl to simulate a network node carrying GSM and GPRS traffics with QoS mechanisms. The payload type including circuit-switched voice, VoIP and web traffic, and the performance including packet drop, delay can be analyzed. The implemented QoS mechanism is DiffServ, with ...
网络 Aodv for NS-2. A mobile ad-hoc network (MANET) is a kind of wireless ad-hoc network, and is a self-c
Aodv for NS-2. A mobile ad-hoc network (MANET) is a kind of wireless ad-hoc network, and is a self-configuring
network of mobile routers connected wirelessly. MANET may operate in a standalone fashion, or may
be connected to the larger Internet. Many routing protocols have been developed for MANETs ...
单片机编程 红外解码程序
/*
&nbsp;* _168ZHONGDUAN2.c
&nbsp;*
&nbsp;* Created: 2014/11/2 15:12:45
&nbsp;* &nbsp;Author: lenovo
&nbsp;*/&nbsp;
#include <avr/io.h>
#include <avr/iom168pa.h>
#include <avr/interrupt.h>
#include <util/delay.h>
#include <avr/eeprom.h>
//#include <util/delay_basic.h>
//unsigned char const SEGtabl ...
单片机编程 AVR单片机转速表
/****************************************************************&nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 外部晶振8M&nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PA0~3:四位数码管的位选&nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; PB0~7:数码管 ...
DSP工具/软件 tas3204
The TAS3204 is a highly-integrated audio system-on-chip (SOC) consisting of a fully-programmable, 48-bit digital audio processor, a 3:1 stereo analog input MUX, four ADCs, four DACs, and other analog functionality. The TAS3204 is programmable with the graphical PurePath Studio™ suite of DS ...
嵌入式综合 红外遥控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 ; ...
嵌入式综合 调光C程序
/*#include<reg52.h>
#define uint unsigned int
#define uchar unsigned char
#define uchar unsigned char
sbit K1=P3^4;
sbit K2=P3^5;
sbit ledr=P1^0;
sbit ledg=P1^1;
sbit ledb=P1^2;
bit LEDDirection=0;//LED控制方向0:渐亮1:渐灭
char &nbsp;pwm=0;
char &nbsp;pwmr=0;
char &nbsp;scw=0;//中断记数
char &nbsp ...