-
sd
说明: sd卡初始,由于SD卡使用SPI模式,并且是块读取(512Byte),所以需要单片机提供大于512的可用RAM,以供缓冲使用 这里可以选择STC89c52RD+、STC89C58RD+、STC89C516RD+,后缀RD+表明扩展RAM是1024字节,RC表明扩展RAM256字节(sd card original, because the SD card using SPI mode, and is a block read (512Byte), so they need the microcontroller to provide more than 512 of the available RAM, for buffer used here can choose STC89c52RD+, STC89C58RD+, STC89C516RD+, the suffix RD+ that extended RAM is 1024 bytes, RC that extended RAM256 byte)
- 2011-11-15 12:27:58下载
- 积分:1
-
ArtmapSource
ARTMAP source code. include: Fuzzy ARTMAP, Default ARTMAP, Instance-Counting ARTMAP, Distributed ARTMAP(ARTMAP source code. Include : Fuzzy ARTMAP, Default ARTMAP. Instance-Counting ARTMAP. Distributed ARTMAP)
- 2006-09-04 12:14:50下载
- 积分:1
-
计算器
用C语言写的关于计算器的实现方式,用栈方法能够实现基本的错误判断与加减乘粗#include #include #include using namespace std; #define MAX 1000 struct zhan1 { float n[MAX]; int top; }stack1; struct zhan2 { char n[MAX]; int top; }stack2; /* stack1用来存储数字 stack2用来存储运算符号. */bool stackempty(zhan1 s)//判断是否为空 { if (s.top== -1) return 1; else return 0; } bool stackempty2(zhan2 s)//判断是否为空 { if (s.top== -1) return 1; else return 0; } void push(zhan1 &s,float x)// 入栈 { if(s.top==MAX-1) { printf("
");
- 2022-07-08 12:40:11下载
- 积分:1
-
51上面的MODBUS源码(从机)
51上面的MODBUS源码,可以直接用,是从机
- 2022-10-03 04:30:03下载
- 积分:1
-
YL-69 51程序
可以用于浇花系统,为一电阻,传送的是模拟量,可以用单片机将模拟量转换为数字量,通过51单片机可以转换为各种其他的芯片,我改为了cc2530的
- 2023-03-28 04:20:03下载
- 积分:1
-
iPhoneSoftModem-BreakOut_EAGLE_v1
this is using for Data over audio commnunication
- 2015-03-10 07:38:54下载
- 积分:1
-
读-写共享独占锁源码实现-C++实现
解决VC++ 语言进行多线程开发时,读、写线程间公平竞争资源,读、写线程之间互斥。进而保证多线程运行的安全性和数据准确性。
- 2022-08-03 12:19:00下载
- 积分:1
-
C语言编程答案
要求采用链表形式,求两个一元多项式的乘积:h3 = h1*h2。函数原型为:void multiplication( NODE * h1, NODE * h2, NODE * h3 )。-要求采用链表形式,求两个一元多项式的乘积:h3 = h1*h2。函数原型为:void multiplication( NODE* h1, NODE* h2, NODE* h3 )。
- 2023-01-24 14:10:04下载
- 积分:1
-
first
说明: 实现固定时隙分配的TDMA算法,有完整的节点和进程模型,用opnet实现(The TDMA algorithm for fixed slot allocation has a complete node and process model, which is implemented by opnet.)
- 2021-02-08 15:09:54下载
- 积分:1
-
静态变量的计数功能原码 可以计算静态变量的大小
静态变量的计数功能原码 可以计算静态变量的大小-static variables counting function source static variables can calculate the size, etc.
- 2022-07-18 19:59:45下载
- 积分:1