Datasheet
152
8246A–AVR–11/09
ATtiny2313A/4313
15.8 Register Description
The following section describes the registers used for SPI operation using the USART.
15.8.1 UDR – USART MSPIM I/O Data Register
The function and bit description of the USART data register (UDR) in MSPI mode is identical to
normal USART operation. See “UDR – USART I/O Data Register” on page 136.
15.8.2 UCSRA – USART MSPIM Control and Status Register A
• Bit 7 – RXC: USART Receive Complete
This flag bit is set when there are unread data in the receive buffer and cleared when the receive
buffer is empty (i.e., does not contain any unread data). If the Receiver is disabled, the receive
buffer will be flushed and consequently the RXC bit will become zero. The RXC Flag can be
used to generate a Receive Complete interrupt (see description of the RXCIE bit).
• Bit 6 – TXC: USART Transmit Complete
This flag bit is set when the entire frame in the Transmit Shift Register has been shifted out and
there are no new data currently present in the transmit buffer (UDR). The TXC Flag bit is auto-
matically cleared when a transmit complete interrupt is executed, or it can be cleared by writing
a one to its bit location. The TXC Flag can generate a Transmit Complete interrupt (see descrip-
tion of the TXCIE bit).
• Bit 5 – UDRE: USART Data Register Empty
The UDRE Flag indicates if the transmit buffer (UDR) is ready to receive new data. If UDRE is
one, the buffer is empty, and therefore ready to be written. The UDRE Flag can generate a Data
Register Empty interrupt (see description of the UDRIE bit). UDRE is set after a reset to indicate
that the Transmitter is ready.
• Bit 4:0 – Reserved Bits in MSPI mode
When in MSPI mode, these bits are reserved for future use. For compatibility with future devices,
these bits must be written to zero when UCSRA is written.
15.8.3 UCSRB – USART MSPIM Control and Status Register B
• Bit 7 – RXCIE: RX Complete Interrupt Enable
Writing this bit to one enables interrupt on the RXC Flag. A USART Receive Complete interrupt
will be generated only if the RXCIE bit is written to one, the Global Interrupt Flag in SREG is writ-
ten to one and the RXC bit in UCSRA is set.
Bit 7 6 5 4 3 2 1 0
0x0B (0x2B) RXC TXC UDRE - - - - - UCSRA
Read/Write R R/W R R R R R R
Initial Value 0 0 0 0 0 1 1 0
Bit 7 6543210
0x0A (0x2A) RXCIE TXCIE UDRIE RXEN TXEN - - - UCSRB
Read/Write R/W R/W R/W R/W R/W R R R
Initial Value 0 0 0 0 0 1 1 0