Skip to content
Snippets Groups Projects
Commit cafa521b authored by Florian Pose's avatar Florian Pose
Browse files

Completed code documentation for ectty.

parent b65b3012
No related branches found
No related tags found
No related merge requests found
......@@ -51,12 +51,13 @@
struct ec_tty;
typedef struct ec_tty ec_tty_t; /**< \see ec_tty */
/**
* \param cflag_changed This callback function is called when the serial
* settings shall be changed. The \a cflag argument contains the new settings.
/** Operations on the virtual TTY interface.
*/
typedef struct {
int (*cflag_changed)(void *, tcflag_t);
int (*cflag_changed)(void *, tcflag_t); /**< Called when the serial
* settings shall be changed. The
* \a cflag argument contains the
* new settings. */
} ec_tty_operations_t;
/******************************************************************************
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment