* Fixed svn:eol-style and svn:keywords properties
[fw/sdcc] / device / include / mcs51 / serial_IO.h
index 0922f9524e88d1542829c8ff27695d9267688a07..d6d536a16d0fbdf0783c8bb2e26787648bd58823 100644 (file)
@@ -1,76 +1,76 @@
-/* Default putchar() and getchar() to the serial port\r
-\r
-   Written By -  Jesus Calvino-Fraga (October/2006)\r
-\r
-   This library is free software; you can redistribute it and/or\r
-   modify it under the terms of the GNU Lesser General Public\r
-   License as published by the Free Software Foundation; either\r
-   version 2.1 of the License, or (at your option) any later version.\r
-\r
-   This library is distributed in the hope that it will be useful,\r
-   but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
-   Lesser General Public License for more details.\r
-\r
-   You should have received a copy of the GNU Lesser General Public\r
-   License along with this library; if not, write to the Free Software\r
-   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA\r
-*/\r
-\r
-#ifndef SERIAL_IO_H\r
-#define SERIAL_IO_H\r
-\r
-__sfr __at (0x87) SIO_PCON;\r
-__sfr __at (0x89) SIO_TMOD;\r
-__sfr __at (0x8D) SIO_TH1;\r
-__sfr __at (0x8B) SIO_TL1;\r
-__sfr __at (0x98) SIO_SCON;\r
-__sfr __at (0x99) SIO_SBUF;\r
-__sbit __at (0x8E) SIO_TR1;\r
-\r
-/*SCON bits*/\r
-__sbit __at (0x98) SIO_RI;\r
-__sbit __at (0x99) SIO_TI;\r
-__sbit __at (0x9A) SIO_RB8;\r
-__sbit __at (0x9B) SIO_TB8;\r
-__sbit __at (0x9C) SIO_REN;\r
-__sbit __at (0x9D) SIO_SM2;\r
-__sbit __at (0x9E) SIO_SM1;\r
-__sbit __at (0x9F) SIO_SM0;\r
-\r
-void inituart (unsigned char t1_reload)\r
-{\r
-       SIO_TR1=0;\r
-       SIO_TMOD=(SIO_TMOD&0x0f)|0x20;\r
-       SIO_PCON|=0x80;\r
-       SIO_TH1=SIO_TL1=t1_reload;\r
-       SIO_TR1=1;\r
-       SIO_SCON=0x52;\r
-}\r
-\r
-void putchar (char c)\r
-{\r
-       if((!SIO_SM0)&&(!SIO_SM1)) inituart(0xff);\r
-       if (c=='\n')\r
-       {\r
-               while (!SIO_TI);\r
-               SIO_TI=0;\r
-               SIO_SBUF='\r';\r
-       }\r
-       while (!SIO_TI);\r
-       SIO_TI=0;\r
-       SIO_SBUF=c;\r
-}\r
-\r
-char getchar (void)\r
-{\r
-       char c;\r
-       \r
-       if((!SIO_SM0)&&(!SIO_SM1)) inituart(0xff);\r
-\r
-       while (!SIO_RI);\r
-       SIO_RI=0;\r
-       c=SIO_SBUF;\r
-       return c;\r
-}\r
-#endif\r
+/* Default putchar() and getchar() to the serial port
+
+   Written By -  Jesus Calvino-Fraga (October/2006)
+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   This library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with this library; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+*/
+
+#ifndef SERIAL_IO_H
+#define SERIAL_IO_H
+
+__sfr __at (0x87) SIO_PCON;
+__sfr __at (0x89) SIO_TMOD;
+__sfr __at (0x8D) SIO_TH1;
+__sfr __at (0x8B) SIO_TL1;
+__sfr __at (0x98) SIO_SCON;
+__sfr __at (0x99) SIO_SBUF;
+__sbit __at (0x8E) SIO_TR1;
+
+/*SCON bits*/
+__sbit __at (0x98) SIO_RI;
+__sbit __at (0x99) SIO_TI;
+__sbit __at (0x9A) SIO_RB8;
+__sbit __at (0x9B) SIO_TB8;
+__sbit __at (0x9C) SIO_REN;
+__sbit __at (0x9D) SIO_SM2;
+__sbit __at (0x9E) SIO_SM1;
+__sbit __at (0x9F) SIO_SM0;
+
+void inituart (unsigned char t1_reload)
+{
+       SIO_TR1=0;
+       SIO_TMOD=(SIO_TMOD&0x0f)|0x20;
+       SIO_PCON|=0x80;
+       SIO_TH1=SIO_TL1=t1_reload;
+       SIO_TR1=1;
+       SIO_SCON=0x52;
+}
+
+void putchar (char c)
+{
+       if((!SIO_SM0)&&(!SIO_SM1)) inituart(0xff);
+       if (c=='\n')
+       {
+               while (!SIO_TI);
+               SIO_TI=0;
+               SIO_SBUF='\r';
+       }
+       while (!SIO_TI);
+       SIO_TI=0;
+       SIO_SBUF=c;
+}
+
+char getchar (void)
+{
+       char c;
+       
+       if((!SIO_SM0)&&(!SIO_SM1)) inituart(0xff);
+
+       while (!SIO_RI);
+       SIO_RI=0;
+       c=SIO_SBUF;
+       return c;
+}
+#endif