搜索结果

找到约 275 项符合 Void 的查询结果

单片机编程 LC7461遥控解码子程序源代码

//遥控解码子程序,LC7461,用户码为11C//external interrupt0void isr_4(){  unsigned char r_count;//定义解码的个数 unsigned long use_data=0;//定义16位的用户码,只用到13位 unsigned long use_code=0;//定义16位的用户反码,只用到13位 unsigned long data=0;//定义16位数据码,包括8位数据码和 ...
https://www.eeworm.com/dl/502/31538.html
下载: 172
查看: 1061

单片机编程 红外解码程序

/*  * _168ZHONGDUAN2.c  *  * Created: 2014/11/2 15:12:45  *  Author: lenovo  */  #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 ...
https://www.eeworm.com/dl/509771.html
查看: 90

技术资料 于博士 Cadence16.5入门视频教程 60讲全

文件较大,附件提供了百度网盘的分享地址和提取码,打开即可下载或转存。中文名: 于博士之Cadence SPB 15.7 快速入门视频教程(共60集)英文名: Cadence SPB 15.7发行时间: 2009年地区: 大陆对白语言: 普通话文字语言: 简体中文简介: 教程定位:零基础快速入门教程,实实在在为初学者着想。远离学院派式的教育,从工程师 ...
https://www.eeworm.com/dl/841716.html
下载: 4
查看: 9972

源码 数据结构实验

#include <iostream> #include <stdio.head> #include <stdlib.head> #include <string.head> #define ElemType int #define max 100 using namespace std; typedef struct node1 { ElemType data; struct node1 *next; }Node1,*LinkList;//链栈 typedef struct { ElemType *base; int top; }SqStack;// ...
https://www.eeworm.com/dl/517414.html
下载: 2
查看: 79

源码 数据结构实验

#include <stdio.h>   #include <stdlib.h> ///链式栈      typedef struct node   {       int data;       struc ...
https://www.eeworm.com/dl/517413.html
下载: 2
查看: 81