X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=drv%2Fser.h;h=a315562ab01a02fe30c600dd0fedbcf5f6ca3828;hb=6ca5e6259460b1541d1b6e6d3f1ac9734901f573;hp=34498df789294c01bc563151a6fd040672c88806;hpb=cd8628e611877d99fc33609a2a3d4401b69222a4;p=bertos.git diff --git a/drv/ser.h b/drv/ser.h index 34498df7..a315562a 100755 --- a/drv/ser.h +++ b/drv/ser.h @@ -14,6 +14,12 @@ /*#* *#* $Log$ + *#* Revision 1.26 2006/05/18 00:39:13 bernie + *#* Add struct Serial friendly typedef. + *#* + *#* Revision 1.25 2006/02/17 22:28:00 bernie + *#* Rename ser_emul.c to ser_posix.c. + *#* *#* Revision 1.24 2006/02/17 22:23:06 bernie *#* Update POSIX serial emulator. *#* @@ -90,7 +96,7 @@ #include #include #include /* BV() */ -#include /* ARCH_EMUL */ +#include #include /*! \name Serial Error/status flags. */ @@ -127,7 +133,7 @@ #define SERRF_FRAMEERROR BV(9) /*!< Stop bit missing */ #define SERRF_NOISEERROR BV(10) /*!< Noise error */ #define SERRF_RXSROVERRUN BV(11) /*!< Rx shift register overrun */ -#elif ARCH & ARCH_EMUL +#elif OS_HOSTED typedef uint16_t serstatus_t; /* Software errors */ @@ -191,7 +197,7 @@ enum SER_UART0, SER_PUNTALI, SER_BARCODE, -#elif ARCH & ARCH_EMUL +#elif OS_HOSTED SER_UART0, SER_UART1, #else @@ -208,7 +214,7 @@ struct SerialHardware; extern const char * const serial_errors[8]; /*! Serial handle structure */ -struct Serial +typedef struct Serial { /*! Physical port number */ unsigned int unit; @@ -240,7 +246,7 @@ struct Serial /*! Low-level interface to hardware. */ struct SerialHardware* hw; -}; +} Serial; /* Function prototypes */