根据51单片机的DS1302代码移植,基于STM32库函数开发原理的DS1302驱动文件。亲测可用。
2014-02-20 00:00:00 3KB STM32 DS1302 驱动 代码
1
很详尽很全的C51库函数,封装有矩阵键盘、步进电机、1602、IIC、AT24CXX、PCF8591、加速度传感器、角速度、磁场传感器、气压传感器、SPI、NRF无线、串口、DS18B20、74HC595、74HC165、STC12-AD、STC12-PWM、Music、表达式计算等函数。 并且函数接口编写尽量做到灵活,使主函数不需要写多少东西,就能实现一个模块的功能。模块化的封装,每个模块单独一个头文件,每个头文件都有示例以及说明注解。
2013-08-04 00:00:00 3.21MB C51库函数 IIC/SPI/1602 矩阵/步进 AD/PWM/NRF
1
该文档详细介绍了VISA函数库中的函数的参数,以及相似函数间的区别
2012-12-27 00:00:00 294KB VISA函数库
1
PCI 控制 硬件 测试指令 通过测试指令向PCI发送地址和数据,到达外部测试版
2011-11-17 00:00:00 2.87MB PCI 控制 硬件 测试指令
1
python 标准库 函数手册 标准库python 标准库 函数手册 标准库python 标准库 函数手册 标准库python 标准库 函数手册 标准库python 标准库 函数手册 标准库python 标准库 函数手册 标准库python 标准库 函数手册 标准库python 标准库 函数手册 标准库
2011-11-14 00:00:00 651KB python 标准库 函数手册 标准库
1
包含所有的python库函数的用法,可以方便查询,方便掌握
2010-12-08 00:00:00 3.99MB python 库函数 手册
1
函数名: abort 功 能: 异常终止一个进程 用 法: void abort(void); 程序例: #include #include int main(void) { printf("Calling abort()\n"); abort(); return 0; /* This is never reached */ } 函数名: abs 功 能: 求整数的绝对值 用 法: int abs(int i); 程序例: #include #include int main(void) { int number = -1234; printf("number: %d absolute value: %d\n", number, abs(number)); return 0; } 函数名: absread, abswirte 功 能: 绝对磁盘扇区读、写数据 用 法: int absread(int drive, int nsects, int sectno, void *buffer); int abswrite(int drive, int nsects, in tsectno, void *buffer); 程序例: /* absread example */ #include #include #include #include int main(void) { int i, strt, ch_out, sector; char buf[512]; printf("Insert a diskette into drive A and press any key\n"); getch(); sector = 0; if (absread(0, 1, sector, &buf) != 0) { perror("Disk problem"); exit(1); } printf("Read OK\n"); strt = 3; for (i=0; i<80; i++) { ch_out = buf[strt+i]; putchar(ch_out); } printf("\n"); return(0); } 函数名: access 功 能: 确定文件的访问权限 用 法: int access(const char *filename, int amode); 程序例: #include #include int file_exists(char *filename); int main(void) { printf("Does NOTEXIST.FIL exist: %s\n", file_exists("NOTEXISTS.FIL") ? "YES" : "NO"); return 0; } int file_exists(char *filename) { return (access(filename, 0) == 0); } 函数名: acos 功 能: 反余弦函数 用 法: double acos(double x); 程序例: #include #include int main(void) { double result; double x = 0.5; result = acos(x); printf("The arc cosine of %lf is %lf\n", x, result); return 0; } 函数名: allocmem 功 能: 分配DOS存储段 用 法: int allocmem(unsigned size, unsigned *seg); 程序例: #include #include #include int main(void) { unsigned int size, segp; int stat; size = 64; /* (64 x 16) = 1024 bytes */ stat = allocmem(size, &segp); if (stat == -1) printf("Allocated memory at segment: %x
2010-05-25 00:00:00 71KB c语言大全
1
C语言标准库函数的源代码,拿出来大家分享
2010-05-11 00:00:00 1.67MB C标准库源代码
1
易语言ZCL_核库函数模块易语言ZCL_核库函数模块易语言ZCL_核库函数模块
2010-04-28 00:00:00 85KB 易语言ZCL_核库函数模块
1