diff packages/io/serial/current/include/serialio.h @ 86:6512add4f5d6 ecos-sw-2000-05-05

Merge from eCos master repository on 2000-05-05-07:47:05-BST
author jlarmour
date Fri, 05 May 2000 17:31:08 +0000
parents 435cced73e2f
children 6ed91473a1cd
line wrap: on
line diff
--- a/packages/io/serial/current/include/serialio.h
+++ b/packages/io/serial/current/include/serialio.h
@@ -116,6 +116,14 @@ typedef struct {
     cyg_uint32               flags;
 } cyg_serial_info_t;
 
+typedef struct {  
+    cyg_int32 rx_bufsize;
+    cyg_int32 rx_count;
+    cyg_int32 tx_bufsize;
+    cyg_int32 tx_count;
+} cyg_serial_buf_info_t;
+
+
 #define CYG_SERIAL_INFO_INIT(_baud,_stop,_parity,_word_length,_flags) \
   { _baud, _stop, _parity, _word_length, _flags}