Advertisement
Guest User

Untitled

a guest
Dec 15th, 2011
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. uint8_t uart_putbyte(uint8_t mybyte)
  2. {
  3.  
  4. UDR0 = mybyte;
  5. while ((UCSR0A & (1 << TXC0)) == 0) {};
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement