Mercurial > ecos
comparison packages/devs/serial/rs232/common/current/include/rs232.hxx @ 0:3111d98ba7b3 ecos-v1_1-release
Initial commit of eCos version 1.1
| author | jlarmour |
|---|---|
| date | Tue, 11 May 1999 11:16:07 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:3111d98ba7b3 |
|---|---|
| 1 #ifndef CYGONCE_DEVS_SERIAL_RS232_COMMON_RS232_HXX | |
| 2 #define CYGONCE_DEVS_SERIAL_RS232_COMMON_RS232_HXX | |
| 3 | |
| 4 //========================================================================== | |
| 5 // | |
| 6 // rs232.hxx | |
| 7 // | |
| 8 // Header file for the generic serial device | |
| 9 // | |
| 10 //========================================================================== | |
| 11 //####COPYRIGHTBEGIN#### | |
| 12 // | |
| 13 // ------------------------------------------- | |
| 14 // The contents of this file are subject to the Cygnus eCos Public License | |
| 15 // Version 1.0 (the "License"); you may not use this file except in | |
| 16 // compliance with the License. You may obtain a copy of the License at | |
| 17 // http://sourceware.cygnus.com/ecos | |
| 18 // | |
| 19 // Software distributed under the License is distributed on an "AS IS" | |
| 20 // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the | |
| 21 // License for the specific language governing rights and limitations under | |
| 22 // the License. | |
| 23 // | |
| 24 // The Original Code is eCos - Embedded Cygnus Operating System, released | |
| 25 // September 30, 1998. | |
| 26 // | |
| 27 // The Initial Developer of the Original Code is Cygnus. Portions created | |
| 28 // by Cygnus are Copyright (C) 1998 Cygnus Solutions. All Rights Reserved. | |
| 29 // ------------------------------------------- | |
| 30 // | |
| 31 //####COPYRIGHTEND#### | |
| 32 //========================================================================== | |
| 33 //#####DESCRIPTIONBEGIN#### | |
| 34 // | |
| 35 // Author(s): proven | |
| 36 // Contributors: proven | |
| 37 // Date: 1998-04-20 | |
| 38 // Purpose: Define Cyg_Device_Serial data structure | |
| 39 // Description: This file contains the C++ class declaration of | |
| 40 // Cyg_Device_Serial_RS232, which is the base class for all | |
| 41 // RS232 serial devices. | |
| 42 // Usage: #include "cyg/devs/serial/rs232/common/rs232.hxx" | |
| 43 // | |
| 44 //####DESCRIPTIONEND#### | |
| 45 // | |
| 46 //========================================================================== | |
| 47 | |
| 48 #include <cyg/kernel/ktypes.h> | |
| 49 #include <cyg/infra/cyg_ass.h> // assertion macros | |
| 50 #include <cyg/infra/cyg_trac.h> // tracing macros | |
| 51 | |
| 52 #include <cyg/devs/common/queuet.hxx> | |
| 53 #include <cyg/devs/common/serial.hxx> | |
| 54 | |
| 55 #include <cyg/devs/serial/rs232/common/rs232.h> | |
| 56 | |
| 57 // ------------------------------------------------------------------------- | |
| 58 // Cyg_Device_Serial_RS232 | |
| 59 | |
| 60 class Cyg_Device_Serial_RS232 | |
| 61 : public Cyg_Device_Serial | |
| 62 { | |
| 63 // nothing extra | |
| 64 }; | |
| 65 | |
| 66 #endif // CYGONCE_DEVS_SERIAL_RS232_COMMON_RS232_HXX | |
| 67 // End of rs232.hxx | |
| 68 |
