Go to the documentation of this file.
18 #define MPC52xx_PSC_SR 0x04
19 #define MPC52xx_PSC_SR_RXRDY 0x0100
20 #define MPC52xx_PSC_SR_RXFULL 0x0200
21 #define MPC52xx_PSC_SR_TXRDY 0x0400
22 #define MPC52xx_PSC_SR_TXEMP 0x0800
24 #define MPC52xx_PSC_BUFFER 0x0C
28 static int psc_open(
void)
35 static void psc_putc(
unsigned char c)
41 static unsigned char psc_tstc(
void)
46 static unsigned char psc_getc(
void)
58 scdp->
open = psc_open;
59 scdp->
putc = psc_putc;
60 scdp->
getc = psc_getc;
61 scdp->
tstc = psc_tstc;