X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=firmware%2Flib%2Fmsp430x2618.c;h=dcdafd51da43755da85112da487abe2b338b81c5;hp=8b72683faeb8138235c26d92349467b61ec65f2e;hb=c1ef7ebcf885f8eac4fb047a376393fc7c7de196;hpb=757884d51cc6b119a3b1773873c446926b26011d diff --git a/firmware/lib/msp430x2618.c b/firmware/lib/msp430x2618.c index 8b72683..dcdafd5 100644 --- a/firmware/lib/msp430x2618.c +++ b/firmware/lib/msp430x2618.c @@ -11,7 +11,7 @@ #include //! Receive a byte. -unsigned char serial_rx(){ +unsigned char serial0_rx(){ char c; while(!(IFG2&UCA0RXIFG));//wait for a byte @@ -29,7 +29,7 @@ unsigned char serial1_rx(){ } //! Transmit a byte. -void serial_tx(unsigned char x){ +void serial0_tx(unsigned char x){ while ((IFG2 & UCA0TXIFG) == 0); //loop until buffer is free UCA0TXBUF = x; /* send the character */ while(!(IFG2 & UCA0TXIFG)); @@ -47,7 +47,7 @@ void serial1_tx(unsigned char x){ } //! Set the baud rate. -void setbaud(unsigned char rate){ +void setbaud0(unsigned char rate){ //Table 15-4, page 481 of 2xx Family Guide switch(rate){