搜索结果

找到约 699 项符合 include 的查询结果

按分类筛选

显示更多分类

单片机编程 ADS1210 ADS1211 C程序

include "macrodefine.h"#include "lpc2294.h" //ADS1210初始化子程序void AD_Init(void){ Delayus(2); SPI1_Communation(0x64); SPI1_Communation(0x72); //单极性,SDOUT独立,先MSB,REF使用内部 SPI1_Communation(0x20); //自校准模式,增益1,通道0 SPI1_Communation(0x ...
https://www.eeworm.com/dl/502/31673.html
下载: 141
查看: 1265

源码 学生成绩管理啊

#include "string.h" #include "ctype.h" #include "stdio.h" search(char pd[]) {FILE *fp;  int time=0,i=0,j=0,add[80],k=0,m;  char *ch,  str[900];  m=strlen(pd);  if((fp=fopen("haha.txt","r"))==NULL)  {   printf("Cannot open this file\n");   exit(0);  } for( ...
https://www.eeworm.com/dl/513824.html
查看: 44

Java编程 The ability to create groups of reports, and grant users access to reports by group. The ability to

The ability to create groups of reports, and grant users access to reports by group. The ability to generate reports as PDF, XLS, HTML, and CSV files. The ability to generate bar, pie and xy charts for inclusion in reports. The ability to schedule and email PDF, XLS, and CSV reports. The ability to ...
https://www.eeworm.com/dl/633/129778.html
下载: 190
查看: 1169

其他 函数 long StrToData(CString strData,int jz) 功能:字符串转为正整数值 [字符串可为2-16]任意进制数值字符串 返回:长整型数值 参数:strData

函数 long StrToData(CString strData,int jz) 功能:字符串转为正整数值 [字符串可为2-16]任意进制数值字符串 返回:长整型数值 参数:strData 为将要转换的字符串 参数:jz 为字符串的进制 如: CString s s="FFA6" long data=StrToData(s,16) 则:data的值为:65446 用法:将StrToData.h和StrToData.cpp复制加入到 ...
https://www.eeworm.com/dl/534/171895.html
下载: 132
查看: 1234

传真(Fax)编程 利用FaxModem通过串口或TAPI接口直接发送和接收传真 一套非常不错的传真库(稳定

利用FaxModem通过串口或TAPI接口直接发送和接收传真 一套非常不错的传真库(稳定,高速),几乎支持所有的FaxModem,出自Symantec公司 Winfax 中国作者之手。 一 .Some of the standard features: 1.Comes with Class1, Class1.0, Class2 and Class 2.0 Fax Drivers 2.Class 1 ECM error correction . 3.Supports CCITT T. ...
https://www.eeworm.com/dl/636/172063.html
下载: 60
查看: 1125

嵌入式Linux Linux 2.4.18 s3c2440 led driver 使用dev-C++撰寫

Linux 2.4.18 s3c2440 led driver 使用dev-C++撰寫,需要linux 2.4.18 kernel include,編譯完成後產生led module。 insmod main.o //安裝模組 mknod /dev/leds c 221 0 使用方法: int main(int argc, char *argv[]) { int testdev //led test... testdev = open("/dev/QuickMarkLed",O_RDWR) ioctl(testdev, 2 ...
https://www.eeworm.com/dl/653/246851.html
下载: 93
查看: 1187

其他 // algo3-12.cpp 银行业务模拟。实现算法3.6、3.7的程序 #define Qu 4 // 客户队列数 #define Khjg 5 // 两相邻到达的客户的时间间隔最大值

// algo3-12.cpp 银行业务模拟。实现算法3.6、3.7的程序 #define Qu 4 // 客户队列数 #define Khjg 5 // 两相邻到达的客户的时间间隔最大值 #define Blsj 30 // 每个客户办理业务的时间最大值 #include"c1.h" typedef struct // 定义ElemType为结构体类型 { int OccurTime // 事件发生时刻 int NType // 事件类型 ...
https://www.eeworm.com/dl/534/266764.html
下载: 72
查看: 1092

其他书籍 不错的 PERL 教程 Find a Perl programmer, and you ll find a copy of Perl Cookbook nearby. Perl Cookbook

不错的 PERL 教程 Find a Perl programmer, and you ll find a copy of Perl Cookbook nearby. Perl Cookbook is a comprehensive collection of problems, solutions, and practical examples for anyone programming in Perl. The book contains hundreds of rigorously reviewed Perl "recipes" and thousands of examp ...
https://www.eeworm.com/dl/542/370290.html
下载: 150
查看: 1085

数学计算 vc++实现多项式与连分式算法及程序  1计算一维多项式值 2计算一维多项式组值 3计算二维多项式值 4计算一维多项式相乘 5计算一维多项式相除 6计算连分式值 最后注意

vc++实现多项式与连分式算法及程序  1计算一维多项式值 2计算一维多项式组值 3计算二维多项式值 4计算一维多项式相乘 5计算一维多项式相除 6计算连分式值 最后注意,在VC++ 6.0中设置好路径,特别是include目录(文件夹)的路径,否则在编译时会出现找不到头文 件的错误,使编译无法正常进行。 ...
https://www.eeworm.com/dl/641/384261.html
下载: 123
查看: 1079

单片机开发 虚拟I2C总线汇编程序软件包 I2C 软件包的底层子程序

虚拟I2C总线汇编程序软件包 I2C 软件包的底层子程序,使用前要定义好SCL和SDA。在标准80C51模式(12 Clock)下,对主频要求是不高于12MHz(1个机器周期1us)若Fosc>12MHz,则要增加相应的NOP指令数。在使用本软件包时,请在你的程序的未尾加入$INCLUDE (VI2C_ASM.ASM)即可。 ...
https://www.eeworm.com/dl/648/405697.html
下载: 108
查看: 1086