点数信息
www.dssz.net
注册会员
|
设为首页
|
加入收藏夹
您好,欢迎光临本网站!
[请登录]
!
[注册会员]
!
首页
移动开发
云计算
大数据
数据库
游戏开发
人工智能
网络技术
区块链
操作系统
模糊查询
热门搜索:
源码
Android
整站
插件
识别
p2p
游戏
算法
更多...
在线客服QQ:632832888
当前位置:
资源下载
搜索资源 - iom16v.h
下载资源分类
移动开发
开发技术
课程资源
网络技术
操作系统
安全技术
数据库
行业
服务器应用
存储
信息化
考试认证
云计算
大数据
跨平台
音视频
游戏开发
人工智能
区块链
在结果中搜索
所属系统
Windows
Linux
FreeBSD
Unix
Dos
PalmOS
WinCE
SymbianOS
MacOS
Android
开发平台
Visual C
Visual.Net
Borland C
CBuilder
Dephi
gcc
VBA
LISP
IDL
VHDL
Matlab
MathCAD
Flash
Xcode
Android STU
LabVIEW
开发语言
C/C++
Pascal
ASM
Java
PHP
Basic/ASP
Perl
Python
VBScript
JavaScript
SQL
FoxBase
SHELL
E语言
OC/Swift
文件类型
源码
程序
CHM
PDF
PPT
WORD
Excel
Access
HTML
Text
资源分类
搜索资源列表
《AVR C语言编程初步》相关文件
/*函数实现的功能为8个LED每2秒钟点亮一次*/ #include #include /*1ms延时函数,时钟应选为内部8M*/ void delay_1ms(void) { unsigned int i; for (i=1;i<1142;i++); } /*延时函数,形参为延时时长 */ void delay(unsigned int n) { unsigned int i=0; for(i=0;i<n;i++) { del ay_1ms(); } } /*端口初始化函数*
所属分类:
C
发布日期:2009-05-13
文件大小:21504
提供者:
ylj195
#include <iom16v.h>
#include #include #define RS_0 PORTD &= ~(1 << PD3) #define RS_1 PORTD |= (1 << PD3) #define RW_0 PORTD &= ~(1 << PD4) #define RW_1 PORTD |= (1 << PD4) #define EN_0 PORTD &= ~(1 << PD6) #define EN_1 PORTD |= (1 <1)
所属分类:
C
发布日期:2009-05-18
文件大小:40960
提供者:
afang44
基于Atmega16的1602可调时钟程序
匆匆上传,没作修改.但运行无问题.#include #include #define uchar unsigned char uchar table[]="0123456789"; #pragma interrupt_handler miao:9 uchar key; int num=55,l=0; int m,h; h=8,m=59; void miao() { l=0; if (num==60) { num=0; } num++; TCNT1H=0xf0;//比较特殊的是需要重新对计数器赋
所属分类:
硬件开发
发布日期:2009-08-07
文件大小:4096
提供者:
tmfjek
AVR16单片机计数器源程序
AVR单片机学习资料 #include #define uchar unsigned char #define uint unsigned int uchar SEG7[10]={0x3f,0x06,0x5b,0x4f,0x66, 0x6d,0x7d,0x07,0x7f,0x6f}; uchar ACT[2]={0xfe,0xfd}; //============================= void delay_ms(uint k) { uint i,j; for(i=0;i<k
所属分类:
硬件开发
发布日期:2009-08-21
文件大小:485
提供者:
ccbbhh111
AVR16单片机液晶源程序
学习资料 #include #define uchar unsigned char #define uint unsigned int uchar SEG7[10]={0x3f,0x06,0x5b,0x4f,0x66, 0x6d,0x7d,0x07,0x7f,0x6f}; uchar ACT[2]={0xfe,0xfd}; //============================= void delay_ms(uint k) { uint i,j; for(i=0;i<k;i++)
所属分类:
硬件开发
发布日期:2009-08-21
文件大小:16384
提供者:
ccbbhh111
avr寻迹小车电路和完整程序
include #include #define uchar unsigned char #define uint unsigned int void turnLLL(void);//左转45度 void turnLL(void);//左转30度 void turnL(void);//左转15度 void turn(void);//居中 void turnR(void);//右转15度 void 。。。。
所属分类:
C/C++
发布日期:2009-09-02
文件大小:360448
提供者:
pxhua
小车程序 很有用的程序
//ICC-AVR application builder : 2008-3-26 15:36:23 // Target : M16 // Crystal: 8.000Mhz #include #include #define uchar unsigned char #define uint unsigned int uchar count=0;//小车行走步数寻左 void forward2(void); void forward1(void); void init_devices(vo
所属分类:
C/C++
发布日期:2009-11-10
文件大小:32768
提供者:
jjjjeeee
avr控制MAX531 程序
avr max531程序#include #include #define uchar unsigned char #define uint unsigned int #define DING PORTA|=BIT(0) #define DINL PORTA&=~BIT(0) #define CLRG PORTA|=BIT(1) #define CLRL PORTA&=~BIT(1) #define SCLKG PORTA|=BIT( 2) #define SCLKL PORTA&=~BIT(
所属分类:
C/C++
发布日期:2009-11-15
文件大小:843
提供者:
maxiaohua24
交通灯控制系统(程序与电路图)
交通灯控制系统(程序与电路图)#include "iom16v.h" #include "DataType.h" #include "app.h" #define cSelfTestMode 0 #define cNormalMode 1 #define cTraffic_V 0 #define cTraffic_H 1 #define cReserved 0 #define cForbidden 1 #define cBuffer1 2 #define cAllow 3 #define cB
所属分类:
交通
发布日期:2010-04-21
文件大小:120832
提供者:
haha311366
示波器的防真文件和源程序
示波器的防真文件和源程序 #include #include #define uchar unsigned char #define uint unsigned int uchar Int_counter=0; uchar Vstate[5]; //0~9为AVR和51单片机通信数据,10~14为自用 uchar Clk_num=0; char Shell_Dot1[5]="00000"; //freq char Shell_Dot2[6]="50.00u"; //us x轴 时间 cha
所属分类:
硬件开发
发布日期:2010-05-08
文件大小:216064
提供者:
lwylwy1
1602液晶自编字符
avr Atmega16控制1602 ICC AVR下: #include #include void write_data void show_1602() { ... } void main() { ... }
所属分类:
硬件开发
发布日期:2011-03-26
文件大小:52224
提供者:
gongweilin123456789
AVR单片机原理图。
AVR单片机的应用程序图,//ICC-AVR application builder : 2011-5-1 17:15:18 // Target : M16 // Crystal: 4.0000Mhz #include #include //#define led PORTA void port_init(void) { // PORTA=0x03; // PORTA.1=1; PORTA|=BIT(PA0);//置为高电平 PORTA|=BIT(PA1);
所属分类:
硬件开发
发布日期:2011-07-19
文件大小:28672
提供者:
z348378749
M16的RS485稳定收发程序
M16的RS485稳定收发程序 /********************************************************************************************* 通信协议说明:定长数据 data size=4 帧格式: 帧 头|地 址 |命 令 | 参 数1 | 参 数2 | 参 数3 | 参 数4 |校验高8位 |校验低8位 |帧尾 0xA2 | 0xxx | 0xxx | 1 | 2 | 3 | 4 | | |0x2A | | |
所属分类:
C
发布日期:2011-11-21
文件大小:86016
提供者:
yangbo_hover
矩阵键盘--4接口
#include #define uchar unsigned char #define uint unsigned int uchar SEG7[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0x08,0x03,0x46,0x21,0x06,0x0e }; //共阳极 void delay(uint k) { uint i,j; for(i=0;i<121;i++) for(j=0;j<k;j++) {;} } uch
所属分类:
C
发布日期:2012-04-21
文件大小:1024
提供者:
myw2008_wang
简单的平衡车
二轮平衡车/MCU:Mega16;晶振:8MHz; //PWM:4KHz;滤波器频率:100Hz;系统频率:100Hz;10ms; //赵国霖:10.05.10; #include #include #include //------------------------------------------------------- //输出端口初始化 void PORT_initial(void) { DDRA=0B00000000; PINA=0X00; PORTA=0X00; DDR
所属分类:
C
发布日期:2012-08-21
文件大小:7168
提供者:
yaojjun
FM1722磁卡器C程序
#include #include ///////////////////////////////////////////////////////////////// //名称: 地址映射 //功能: FM1722寄存器地址定义 //输入: 无 //输出: 无 ////////////////////////////////////////////////////////////////// //页写寄存器 #define Page_Sel 0x00 //命令寄存器 #define Com
所属分类:
C
发布日期:2012-10-20
文件大小:9216
提供者:
gaofanlin001_ljh
iom16v.h ATmega16的头文件
ATmega16 ifndef __iom16v_h #define __iom16v_h #define uchar unsigned char #define uint unsigned int #ifndef BIT #define BIT(x) (1 << (x)) #endif /* ATmega16 header file for * ImageCraft ICCAVR compiler */ /* 2 wire serial interface */ #define
所属分类:
C++
发布日期:2013-12-25
文件大小:12288
提供者:
u013274633
ATmega16驱动12864液晶(LCD12864A_ST7290驱动芯片)
//#include //#include "delay_Accurate.h" typedef unsigned char uchar; typedef unsigned int uint; extern const unsigned char shuzi_table[]; #define LCD_DataIn DDRB=0x00 //数据口方向设置为输入 #define LCD_DataOut DDRB=0xff //数据口方向设置为输出 #define LCD2MCU_Data PIN
所属分类:
C
发布日期:2014-07-26
文件大小:149504
提供者:
luozyou
单片机ICCAVR
//ICC-AVR application builder : 2011-10-23 23:24:32 // Target : M16 // Crystal: 8.0000Mhz //delay_us(10); //11us //delay_us(700) ; //524us //delay_us(800); //600us //delay_us(40); //33us //delay_us(55); //45us //delay_us(50); //41us //delay_us(150);
所属分类:
管理软件
发布日期:2014-07-28
文件大小:2097152
提供者:
sun18sum
ATmega16的平衡车
#include #include #include #define checkbit var bit var& 0x01<< bit 定义查询位函数 #define setbit var bit var| 0x01<< bit 定义置位函数 #define clrbit var bit var& 0x01<#include #include #include #define checkbit var bit var& 0x01
所属分类:
C
发布日期:2015-02-18
文件大小:1048576
提供者:
chearun
«
1
2
»