搜索资源列表
-
0下载:
实验芯片: ATmega8515L或Atmega8515
工作频率: 8MHz
编译软件: C语言:WINAVR 1.41
汇编语言:AVR Studio
功能:
8个数码管从左至右依次显示:1,2,3,4,5,6,7,8。
-Experimental chip: ATmega8515L or Atmega8515 frequency: 8MHz compiler software: C language: WINAVR 1.41 asse
-
-
0下载:
writing a pasword and check if it is correct or not..here it 5 digit password..implimented in AVR STUDIO 4-writing a pasword and check if it is correct or not..here it 5 digit password..implimented in AVR STUDIO 4
-
-
0下载:
AVR Studio 5中文手册,AVR Studio 5 是atmel推出的新的编程境,使用4.0的用户可能不太适应,通过一段时间的摸索,本人将主要过程进行一下小结,希望起到抛砖引玉的作用。 -AVR Studio five Chinese manuals, AVR Studio 5 is the launch of the new programming atmel environment, use 4.0 users may not too orientation, through a p
-
-
0下载:
ATMEGA16 comtroller with 4 7segment display, lamp, button, and termomiter (code in AVR Studio 5 + board design)-ATMEGA16 comtroller with 4 7segment display, lamp, button, and termomiter (code in AVR Studio 5 + board design)
-
-
0下载:
数码管实验 。1.在ICCAVR环境下建立项目,并加入源文件,然后编译、连接该项目
2.用AVR Studio仿真(需选择JTAG ICE)或者将LED.HEX烧入单片机
3.可以看到6位数码管循环显示1、2、3、4、5、6,可以更改data[6]数组的内容
来改变循环显示的内容。-Digital control experiment.A. , Establish project ICCAVR environment, and adding a source file and
-
-
1下载:
类似LED手电筒的三档调光带记忆程序源码(汇编),编译环境:AVR Studio 4,调试通过。电源为6v铅酸蓄电池(也可以用锂电池,但要修改相应参数),设欠压保护5.25v,低于此值则进入休眠状态,主频通过熔丝位设为4.8MHz,电源开关作为开关和换档,快速连续按键视为换档操作,慢速只有开关功能,类似于手电筒调光。-Similar LED flashlight Three dimming with memory program source code (assembly), the compi
-
-
0下载:
/*
* ADC.c
*
* Created: 22-5-2011 8:22:10 PM
* Author: Wingston
*/
#include <avr/io.h>
#include <avr/interrupt.h>
uint16_t ReadChannel(int mux);
int main (void)
{
DDRC = 0xFF;
uint16_t adcval = 0;
while(1){
a
-