142
ATmega8515(L)
2512K–AVR–01/10
More advanced initialization routines can be made that include frame format as parame-
ters, disable interrupts and so on. However, many applications use a fixed setting of the
Baud and Control Registers, and for these types of applications the initialization code
can be placed directly in the main routine, or be combined with initialization code for
other I/O modules.
Data Transmission – The
USART Transmitter
The USART Transmitter is enabled by setting the Transmit Enable (TXEN) bit in the
UCSRB Register. When the Transmitter is enabled, the normal port operation of the
TxD pin is overridden by the USART and given the function as the Transmitter’s serial
output. The baud rate, mode of operation and frame format must be set up once before
doing any transmissions. If synchronous operation is used, the clock on the XCK pin will
be overridden and used as transmission clock.
Sending Frames with 5 to 8
Data Bits
A data transmission is initiated by loading the transmit buffer with the data to be trans-
mitted. The CPU can load the transmit buffer by writing to the UDR I/O location. The
buffered data in the transmit buffer will be moved to the Shift Register when the Shift
Register is ready to send a new frame. The Shift Register is loaded with new data if it is
in idle state (no ongoing transmission) or immediately after the last stop bit of the previ-
ous frame is transmitted. When the Shift Register is loaded with new data, it will transfer
one complete frame at the rate given by the Baud Register, U2X bit or by XCK depend-
ing on mode of operation.
The following code examples show a simple USART transmit function based on polling
of the Data Register Empty (UDRE) Flag. When using frames with less than eight bits,
the most significant bits written to the UDR are ignored. The USART has to be initialized
before the function can be used. For the assembly code, the data to be sent is assumed
to be stored in Register R16
Note:
The function simply waits for the transmit buffer to be empty by checking the UDRE
Flag, before loading it with new data to be transmitted. If the Data Register Empty Inter-
rupt is utilized, the interrupt routine writes the data into the buffer.
Assembly Code Example
USART_Transmit:
; Wait for empty transmit buffer
sbis
UCSRA,UDRE
rjmp
USART_Transmit
; Put data (r16) into buffer, sends the data
out
UDR,r16
ret
C Code Example(1)
void
USART_Transmit( unsigned char data )
{
/* Wait for empty transmit buffer */
while
( !( UCSRA & (1<<UDRE)) )
;
/* Put data into buffer, sends the data */
UDR = data;
}
相关PDF资料
PIC16F1828-I/SO IC PIC MCU 8BIT 14KB FLSH 20SOIC
PIC16F688-I/SL IC PIC MCU FLASH 4KX14 14SOIC
22-02-3213 CONN FFC/FPC VERTICAL 21POS .100
22-15-3193 CONN FFC/FPC 19POS .100 RT ANG
PIC16C433T-E/SO IC MCU CMOS 8BIT 10MHZ 2K 18SOIC
22-02-3103 CONN FFC/FPC VERTICAL 10POS .100
PIC16C432T-E/SS IC MCU CMOS 8BIT 20MHZ 2K 20SSOP
PIC16C432-I/P IC MCU CMOS 8-BIT 20MHZ 2K 20DIP
相关代理商/技术参数
PIC16F1825-E/ML 制造商:Microchip Technology Inc 功能描述:; Controller Family/Series:PIC16F; Core
PIC16F1825-E/P 功能描述:8位微控制器 -MCU 14KB FL 1KBRAM 32MHz 12I/0 Enhanced Mid RoHS:否 制造商:Silicon Labs 核心:8051 处理器系列:C8051F39x 数据总线宽度:8 bit 最大时钟频率:50 MHz 程序存储器大小:16 KB 数据 RAM 大小:1 KB 片上 ADC:Yes 工作电源电压:1.8 V to 3.6 V 工作温度范围:- 40 C to + 105 C 封装 / 箱体:QFN-20 安装风格:SMD/SMT
PIC16F1825-E/P 制造商:Microchip Technology Inc 功能描述:; Controller Family/Series:PIC16F; Core
PIC16F1825-E/SL 功能描述:8位微控制器 -MCU 14KB FL 1KBRAM 32MHz 12I/0 Enhanced Mid RoHS:否 制造商:Silicon Labs 核心:8051 处理器系列:C8051F39x 数据总线宽度:8 bit 最大时钟频率:50 MHz 程序存储器大小:16 KB 数据 RAM 大小:1 KB 片上 ADC:Yes 工作电源电压:1.8 V to 3.6 V 工作温度范围:- 40 C to + 105 C 封装 / 箱体:QFN-20 安装风格:SMD/SMT
PIC16F1825-E/SL 制造商:Microchip Technology Inc 功能描述:; Controller Family/Series:PIC16F; Core 制造商:Microchip Technology Inc 功能描述:IC, 8BIT MCU, PIC16F, 32MHz, SOIC-14
PIC16F1825-E/ST 功能描述:8位微控制器 -MCU 14KB FL 1KBRAM 32MHz 12I/0 Enhanced Mid RoHS:否 制造商:Silicon Labs 核心:8051 处理器系列:C8051F39x 数据总线宽度:8 bit 最大时钟频率:50 MHz 程序存储器大小:16 KB 数据 RAM 大小:1 KB 片上 ADC:Yes 工作电源电压:1.8 V to 3.6 V 工作温度范围:- 40 C to + 105 C 封装 / 箱体:QFN-20 安装风格:SMD/SMT
PIC16F1825-E/ST 制造商:Microchip Technology Inc 功能描述:; Controller Family/Series:PIC16F; Core 制造商:Microchip Technology Inc 功能描述:IC, 8BIT MCU, PIC16F, 32MHz, TSSOP-14
PIC16F1825-I/ML 功能描述:8位微控制器 -MCU 14KB FL 1KBRAM 32MHz 12I/0 Enhanced Mid RoHS:否 制造商:Silicon Labs 核心:8051 处理器系列:C8051F39x 数据总线宽度:8 bit 最大时钟频率:50 MHz 程序存储器大小:16 KB 数据 RAM 大小:1 KB 片上 ADC:Yes 工作电源电压:1.8 V to 3.6 V 工作温度范围:- 40 C to + 105 C 封装 / 箱体:QFN-20 安装风格:SMD/SMT