File: control.h

package info (click to toggle)
cyclades-serial-client 0.95
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 420 kB
  • sloc: ansic: 9,512; sh: 277; makefile: 63
file content (17 lines) | stat: -rw-r--r-- 199 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

typedef enum
{
  eSET_SPEED = 0,
  eSEND_BREAK,
  eSET_CSIZE,
  eSET_PARITY,
  eSET_STOPSIZE,
  eSET_CONTROL
} e_operation;

typedef struct
{
  int size;
  e_operation oper;
  int val;
} s_control;