22.07.2013 Views

ATtiny2313 Datasheet - DCE FEL ČVUT v Praze

ATtiny2313 Datasheet - DCE FEL ČVUT v Praze

ATtiny2313 Datasheet - DCE FEL ČVUT v Praze

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Sending Frames with<br />

9 Data Bit<br />

2543K–AVR–03/10<br />

<strong>ATtiny2313</strong><br />

If 9-bit characters are used (UCSZ = 7), the ninth bit must be written to the TXB8 bit in UCSRB<br />

before the low byte of the character is written to UDR. The following code examples show a<br />

transmit function that handles 9-bit characters. For the assembly code, the data to be sent is<br />

assumed to be stored in registers R17:R16.<br />

Assembly Code Example (1)(2)<br />

USART_Transmit:<br />

; Wait for empty transmit buffer<br />

sbis UCSRA,UDRE<br />

rjmp USART_Transmit<br />

; Copy 9th bit from r17 to TXB8<br />

cbi UCSRB,TXB8<br />

sbrc r17,0<br />

sbi UCSRB,TXB8<br />

; Put LSB data (r16) into buffer, sends the data<br />

out UDR,r16<br />

ret<br />

C Code Example (1)(2)<br />

void USART_Transmit( unsigned int data )<br />

{<br />

/* Wait for empty transmit buffer */<br />

while ( !( UCSRA & (1

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!