搜索结果
找到约 624 项符合
INCLUDE 的查询结果
按分类筛选
- 全部分类
- 单片机开发 (54)
- 其他 (40)
- 单片机编程 (40)
- 技术资料 (28)
- 源码 (23)
- Linux/Unix编程 (22)
- 其他书籍 (19)
- 编译器/解释器 (17)
- 数学计算 (15)
- 微处理器开发 (14)
- 人工智能/神经网络 (14)
- 数据结构 (14)
- 书籍 (14)
- VC书籍 (13)
- 其他嵌入式/单片机内容 (11)
- 书籍源码 (11)
- matlab例程 (11)
- 数值算法/人工智能 (11)
- 汇编语言 (10)
- C/C++语言编程 (9)
- Java编程 (9)
- 电子书籍 (8)
- 压缩解压 (7)
- Delphi控件源码 (7)
- 嵌入式/单片机编程 (7)
- 软件设计/软件工程 (7)
- 驱动编程 (6)
- 网络 (6)
- 其他行业 (6)
- 加密解密 (6)
- 软件工程 (6)
- VHDL/FPGA/Verilog (6)
- 多媒体处理 (5)
- 模拟电子 (5)
- 可编程逻辑 (5)
- SCSI/ASPI (5)
- Internet/网络编程 (5)
- 嵌入式Linux (5)
- 游戏 (5)
- DSP编程 (5)
- Windows CE (5)
- 通讯/手机编程 (5)
- 电源技术 (4)
- 教程资料 (4)
- Java书籍 (4)
- 通讯编程文档 (4)
- 其他数据库 (4)
- 嵌入式综合 (4)
- VIP专区 (4)
- ARM (3)
- 系统设计方案 (3)
- VxWorks (3)
- Jsp/Servlet (3)
- 操作系统开发 (3)
- 数据库系统 (3)
- 文章/文档 (3)
- 编辑器/阅读器 (3)
- 软件 (3)
- 笔记 (3)
- 中间件编程 (2)
- 文件格式 (2)
- 教育系统应用 (2)
- GPS编程 (2)
- SQL Server (2)
- 行业发展研究 (2)
- 金融证券系统 (2)
- *行业应用 (2)
- Linux/uClinux/Unix编程 (2)
- 行业应用文档 (1)
- 资料/手册 (1)
- 教程资料 (1)
- 无线通信 (1)
- 技术书籍 (1)
- 开发工具 (1)
- 设计相关 (1)
- STL (1)
- Oracle数据库 (1)
- Delphi/CppBuilder (1)
- 邮电通讯系统 (1)
- 语音压缩 (1)
- 并行计算 (1)
- 传真(Fax)编程 (1)
- Modem编程 (1)
- 家庭/个人应用 (1)
- uCOS (1)
- 手机WAP编程 (1)
- USB编程 (1)
- MySQL数据库 (1)
- TAPI编程 (1)
- JavaScript (1)
- Symbian (1)
- 技术管理 (1)
- PCB图/BOM单/原理图 (1)
- 教材/考试/认证 (1)
- 手册 (1)
单片机编程 AVR单片机数码管秒表显示
#include<iom16v.h>
#include<macros.h>
#define uint unsigned int
#define uchar unsigned char
uint a,b,c,d=0;
void delay(c)
{ for for(a=0;a<c;a++)
for(b=0;b<12;b++);
};
uchar tab[]={
0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,
单片机编程 100个单片机实例
#include<reg51.h> //包含单片机寄存器的头文件
/*******************************************************
函数功能:主函数 (C 语言规定必须有也只能有1 个主函数)
********************************************************/
void main(void)
{
while(1) //无限循环
{
P1=0xff; // P1=1111 1111B,熄灭LED
...
单片机编程 c51流水灯仿真与程序
对应程序:
#include<reg52.h>
#define uint unsigned int
#define uchar unsigned char
uchar code tab[]={
0x81,
0x42,
0x24,
0x18,
};
void delay(uint z)
{
uint i,j;
for(i=z;i>0;i--)
for(j=120;j>0;j--);
}
void init()
{
P0=0x00;
}
单片机编程 51单片机实现的RS485通讯程序
#ifndef __485_C__
#define __485_C__
#include
#include
#define unsigned char uchar
#define unsigned int uint
/* 通信命令 */
#define __ACTIVE_ 0x01 // 主机询问从机是否存在
#define __GETDATA_ 0x02 // 主机发送读设备请求
#define __OK_ 0x03 // 从机应答
#define ...
单片机编程 ds18b20程序
/通过DS18B20测试当前环境温度, 并通过数码管显示当前温度值, 目前显示范围: 0.0~ +99.9度
#include
#include
#define uchar unsigned char
#define uint unsigned int
#define DATAPORT P0 //定义P0口为Led数据口
//#define SETTEMP P1 //定义P1口为设定温度
#define SELECT P2 //定义P2 ...
单片机编程 SN65LBC170,SN75LBC170,pdf(TRIP
The SN65LBC170 and SN75LBC170 aremonolithic integrated circuits designed forbidirectional data communication on multipointbus-transmission lines. Potential applicationsinclude serial or parallel data transmission, cabledperipheral buses with twin axial, ribbon, ortwisted-pair cabling. These devices ...
单片机编程 FET430PIF自制资料
The MSP-FET430PIF is a Parallel Port interface (does not include target board) that is used to program and debug MSP430 FET tools and test boards through the JTAG interface. This interface is included in our FET tools, but sold without the development board. This interface uses a Parallel PC Port to ...
单片机编程 lpc2478完全使用手册
NXP Semiconductor designed the LPC2400 microcontrollers around a 16-bit/32-bitARM7TDMI-S CPU core with real-time debug interfaces that include both JTAG andembedded Trace. The LPC2400 microcontrollers have 512 kB of on-chip high-speedFlash memory. This Flash memory includes a special 128-bit wide me ...
单片机编程 PICkit™ 2 Microcontrolle
PICkit&#8482; 2 Microcontroller Programmer USER’S GUIDE
This chapter contains general information that will be useful to know before using thePICkit&#8482; 2 Microcontroller Programmer. Items discussed in this chapter include:&#8226; Document Layout&#8226; Conventions Used in this Guide&#8226; Warr ...
单片机编程 PCA9534—带中断的低功耗8位I2C和SMBus IO口
The PCA9534 is a 16-pin CMOS device that provide 8 bits of General Purpose parallel
Input/Output (GPIO) expansion for I2C-bus/SMBus applications and was developed to
enhance the NXP Semiconductors family of I2C-bus I/O expanders. The improvements
include higher drive capability, 5 V I/O tolerance, l ...