Fixed mail address; limited lines to 78 characters; removed $Id$.

This commit is contained in:
Florian Pose
2024-02-01 15:15:41 +01:00
parent 512bac72e2
commit ee55c20e28
283 changed files with 2137 additions and 2647 deletions
+10 -12
View File
@@ -1,6 +1,4 @@
/******************************************************************************
*
* $Id$
/*****************************************************************************
*
* Copyright (C) 2006-2008 Florian Pose, Ingenieurgemeinschaft IgH
*
@@ -20,7 +18,7 @@
* along with the IgH EtherCAT master userspace library. If not, see
* <http://www.gnu.org/licenses/>.
*
*****************************************************************************/
****************************************************************************/
/** \file
*
@@ -31,16 +29,16 @@
* @{
*/
/*****************************************************************************/
/****************************************************************************/
#ifndef __ECTTY_H__
#define __ECTTY_H__
#include <linux/termios.h>
/******************************************************************************
/*****************************************************************************
* Data types
*****************************************************************************/
****************************************************************************/
struct ec_tty;
typedef struct ec_tty ec_tty_t; /**< \see ec_tty */
@@ -54,9 +52,9 @@ typedef struct {
* new settings. */
} ec_tty_operations_t;
/******************************************************************************
/*****************************************************************************
* Global functions
*****************************************************************************/
****************************************************************************/
/** Create a virtual TTY interface.
*
@@ -70,9 +68,9 @@ ec_tty_t *ectty_create(
void *cb_data
);
/******************************************************************************
/*****************************************************************************
* TTY interface methods
*****************************************************************************/
****************************************************************************/
/** Releases a virtual TTY interface.
*/
@@ -101,7 +99,7 @@ void ectty_rx_data(
size_t size /**< Number of bytes in \a buffer. */
);
/*****************************************************************************/
/****************************************************************************/
/** @} */