INT16 print_Char ( CHAR  c,
FILE *  stream 
)

This function directly redirects to uart_PutChar().

Since the parameter stream isn't used it can be set to NULL.

Parameters:
cCHAR charcater to be writen on stdout
streamFILE* file pointer for compability with stdout access.
Returns:
INT16
Return values:
always0

Definition at line 104 of file print.c.

References uart_PutChar().

Referenced by print_Init().

{
  uart_PutChar(c);
  
  return (0U);
}

Here is the call graph for this function:

Here is the caller graph for this function: