Tscope5
|
Definitions of serial port functions. More...
Go to the source code of this file.
Functions | |
Trigger input/output | |
The serial ports can be used as trigger input/output devices. See timer.c for more information about trigger input/output. | |
int | ts5_define_serialport_trigger_input (char *portname) |
Define a serial port as a trigger input device. | |
void | ts5_simulate_serialport_trigger_input (int device, unsigned char value, double interval) |
Turn on serial port input simulation. | |
int | ts5_define_serialport_trigger_output (char *portname) |
Define a serial port as a trigger output device. | |
void | ts5_send_serialport_trigger (int device, unsigned char value) |
Send a trigger trough a serial port. | |
TS5_SERIALPORT * | ts5_get_serialport (int device) |
Get a pointer to a serial port. |
Definitions of serial port functions.
Definition in file serialport.c.
int ts5_define_serialport_trigger_input | ( | char * | portname | ) |
Define a serial port as a trigger input device.
portname | Name of the serial port (COM1, ... on Windows, /etc/tty... on Posix systems). |
Definition at line 40 of file serialport.c.
void ts5_simulate_serialport_trigger_input | ( | int | device, |
unsigned char | value, | ||
double | interval | ||
) |
Turn on serial port input simulation.
device | Number of the serial port. |
value | Input value that has to be simulated (0-255, 0 turns the simulation off). |
interval | Interval in seconds between two triggers. |
Definition at line 65 of file serialport.c.
int ts5_define_serialport_trigger_output | ( | char * | portname | ) |
Define a serial port as a trigger output device.
portname | Name of the serial port (COM1, ... on Windows, /etc/tty... on Posix systems). |
Definition at line 96 of file serialport.c.
void ts5_send_serialport_trigger | ( | int | device, |
unsigned char | value | ||
) |
Send a trigger trough a serial port.
device | Number of the serial port (devices are numbered from 1). |
value | The trigger value that has to be sent (0-255). |
Definition at line 118 of file serialport.c.
TS5_SERIALPORT* ts5_get_serialport | ( | int | device | ) |
Get a pointer to a serial port.
device | Number of the serial port (devices are numbered from 1). |
Definition at line 174 of file serialport.c.