Proteus8.9 VSM Studio WINAVR编译器仿真ATmega16系列a04_INT0及INT1中断

*本文及代码参阅彭伟《单片机C语言程序设计实训100例》
一,打开文件(可以随文下载放置在文档中打开)。(如下图1所示)
Proteus8.9 VSM Studio WINAVR编译器仿真ATmega16系列a04_INT0及INT1中断_第1张图片
图1

二,调整原理图大小,适合可视,另存工程文件。(如下图2,3,4所示)
Proteus8.9 VSM Studio WINAVR编译器仿真ATmega16系列a04_INT0及INT1中断_第2张图片
图2

Proteus8.9 VSM Studio WINAVR编译器仿真ATmega16系列a04_INT0及INT1中断_第3张图片
图3

Proteus8.9 VSM Studio WINAVR编译器仿真ATmega16系列a04_INT0及INT1中断_第4张图片
图4

三,点击Source Code标签。(如下图5所示)
Proteus8.9 VSM Studio WINAVR编译器仿真ATmega16系列a04_INT0及INT1中断_第5张图片
图5

四,编辑main.c 代码如Proteus8.9 VSM Studio WINAVR编译器仿真ATmega16系列a04_INT0及INT1中断 (如下图6所示)
Proteus8.9 VSM Studio WINAVR编译器仿真ATmega16系列a04_INT0及INT1中断_第6张图片
图6

五,Main.c 代码:

#include “myfunc01.h”
//-----------------------------------------------------------------
// 主程序
//-----------------------------------------------------------------
extern INT16U Count_A;
extern INT16U Count_B;

int main()
{
DDRB= 0xff; PORTB= 0xff;
DDRC= 0xff; PORTC= 0xff;
DDRD= 0x00; PORTD= 0xff;
MCUCR= 0x0A;
GICR= 0xC0;
sei();
while(1) {
if(K1_CLEAR_ON()) Count_A= 0;
if(K2_CLEAR_ON()) Count_B= 0;
SHOW_COUNTs();
}
}

ISR(INT0_vect) {
Count_A++;
}
吗衣服拿出:
//******************************************************************************************
#ifndef MYFUNC01_H
#define MYFUNC01_H

//#define F_CPU 2000000UL
#include
#include
#include
#define INT8U unsigned char
#define INT16U unsigned int

#define K1_CLEAR_ON() ((PIND & 0x10) == 0X00)
#define K2_CLEAR_ON() ((PIND & 0x20) == 0X00)

void SHOW_COUNTs();

#endif

六,点击构建工程按钮,编译工程。(如下图7所示)
Proteus8.9 VSM Studio WINAVR编译器仿真ATmega16系列a04_INT0及INT1中断_第7张图片
图7

七,点击窗口左下方仿真按钮,可见虚拟示波器输入输出输出显示。 (如下图8,9,10所示)
Proteus8.9 VSM Studio WINAVR编译器仿真ATmega16系列a04_INT0及INT1中断_第8张图片
图8

Proteus8.9 VSM Studio WINAVR编译器仿真ATmega16系列a04_INT0及INT1中断_第9张图片
图9
Proteus8.9 VSM Studio WINAVR编译器仿真ATmega16系列a04_INT0及INT1中断_第10张图片
图10

八,选择release,点击构建工程按钮,编译工程生成Hex文件。(如下图11所示)
Proteus8.9 VSM Studio WINAVR编译器仿真ATmega16系列a04_INT0及INT1中断_第11张图片
图11

附件下载:https://download.csdn.net/download/kaillen/12539368
Proteus8.9 SP2下载:https://download.csdn.net/download/kaillen/12459968
附件Proteus8.9 VSM Studio WINAVR编译器仿真ATmega16系列a04_INT0及INT1中断在已安装Proteus8.9的计算机文件夹中打开即可
需要进一步了解,请加入QQ群:976235464

你可能感兴趣的:(C51,C语言,Proteus仿真,c语言,单片机,windows,小程序,安全)