[原创]
mega48内部资源的使用——外部中断1
/*
*AVRGCC1.c
*
*Created: 2016/10/23 17:11:04
* Author: xuyuntonge
*/
#include
#include
# define F_CPU 4000000UL
#include
void Int0_Config()
{
cli();
EICRA=(1<
EIMSK=(1<
sei();
}
int main(void)
{
DDRC=0xff;
DDRD=0x00;
Int0_Config();
while (1)
{
}
}
ISR(INT1_vect ) //外部中断1入口
{
PORTC=0XFF;
}
此内容由EEWORLD论坛网友xutong原创,如需转载或用于商业用途需征得作者同意并注明出处
暂无评论,赶紧抢沙发吧