Definition at line 93 of file uart.c. References uart_PutChar(). Referenced by print_Char(), and uart_PutChar(). { #ifndef BOOTLOADER if('\n' == c) { uart_PutChar('\r'); } #endif /* wait until ready to send */ loop_until_bit_is_set(USR, UDRE); /* send char */ UDR = c; }
Here is the call graph for this function:
![]()
Here is the caller graph for this function:
![]() |