您的位置 首页 软件

IAR For AVR 串口中止接纳

应用芯片:ATMega16晶振:7.3728MHz代码文件:uart_int.c

使用芯片: AT Mega16 晶振: 7.3728MHz

代码文件: uart_int.c

|_________DELAY.H

##############################################

DELAY.H :

#ifndef __IAR_DELAY_H
#define __IAR_DELAY_H

#include

#define XTAL7.3728//可定义为你所用的晶振频率(单位Mhz)

#define delay_us(x) __delay_cycles ( (unsigned long)(x * XTAL) )
#define delay_ms(x) __delay_cycles ( (unsigned long)(x * XTAL*1000) )
#define delay_s(x) __delay_cycles ( (unsigned long)(x * XTAL*1000000) )

#endif

uart_int.c :

#include
#include “delay.h”
#define uchar unsigned char
#define uint unsigned int

uchar c;

//###########################################################
/*串口初始化函数*/
voidUart_Init(void)
{
UCSRB = (1< UCSRC = (1<

UBRRH=0x00; //设置波特率寄存器低位字节
UBRRL=47; //9600 //设置波特率寄存器高位字节

SREG_I= 1; //开总中止
DDRD_Bit1=1; //装备TX为输出(很重要)
}
//###########################################################
/*发送一个字符数据,查询方法*/
voidUart_Transmit(uchar data)
{
while(!(UCSRA&(1< //也能够写成 while(UCSRA_UDRE==0);
UDR = data; // 发送数据
}
//###########################################################
/*中止接纳*/
#pragma vector=USART_RXC_vect
__interrupt void USART_RXC_Server(void)
{
UCSRB_RXCIE = 0; //关串口中止
c = UDR ; //将收到的值赋值给变量
Uart_Transmit(c); //发给串口以检测对错
UCSRB_RXCIE = 1; //开串口中止
}
//###########################################################
/*主函数*/
void main(void)
{
Uart_Init();
delay_us(20); //串口初始化后,有必要延时20us以上才干发送数据,不然会呈现过错
Uart_Transmit(0x64);

while(1)
{ ; } //此刻能够用串口帮手发送字符,然后能够正确接纳
}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/qianrushi/ruanjian/252154.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部