Skip to content

Commit a20ed29

Browse files
committedJan 23, 2020
Add example of waiting for events.
1 parent 4720053 commit a20ed29

File tree

4 files changed

+105
-0
lines changed

4 files changed

+105
-0
lines changed
 

‎Makefile.am

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ EXTRA_DIST = Doxyfile \
6767
examples/list_ports.c \
6868
examples/port_info.c \
6969
examples/port_config.c \
70+
examples/await_events.c \
7071
examples/handle_errors.c
7172

7273
MAINTAINERCLEANFILES = ChangeLog

‎examples/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
await_events
12
handle_errors
23
list_ports
34
port_info

‎examples/await_events.c

+99
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
#include <libserialport.h>
2+
#include <stdio.h>
3+
#include <stdlib.h>
4+
5+
/* Example of how to wait for events on multiple ports.
6+
*
7+
* This example file is released to the public domain. */
8+
9+
/* Helper function for error handling. */
10+
int check(enum sp_return result);
11+
12+
int main(int argc, char **argv)
13+
{
14+
/* Get the port names from the command line. */
15+
if (argc < 2) {
16+
printf("Usage: %s <port name>...\n", argv[0]);
17+
return -1;
18+
}
19+
int num_ports = argc - 1;
20+
char **port_names = argv + 1;
21+
22+
/* The ports we will use. */
23+
struct sp_port *ports[num_ports];
24+
25+
/* The set of events we will wait for. */
26+
struct sp_event_set *event_set;
27+
28+
/* Allocate the event set. */
29+
check(sp_new_event_set(&event_set));
30+
31+
/* Open and configure each port, and then add its RX event
32+
* to the event set. */
33+
for (int i = 0; i < num_ports; i++) {
34+
35+
printf("Looking for port %s.\n", port_names[i]);
36+
check(sp_get_port_by_name(port_names[i], &ports[i]));
37+
38+
printf("Opening port.\n");
39+
check(sp_open(ports[i], SP_MODE_READ));
40+
41+
printf("Setting port to 9600 8N1, no flow control.\n");
42+
check(sp_set_baudrate(ports[i], 9600));
43+
check(sp_set_bits(ports[i], 8));
44+
check(sp_set_parity(ports[i], SP_PARITY_NONE));
45+
check(sp_set_stopbits(ports[i], 1));
46+
check(sp_set_flowcontrol(ports[i], SP_FLOWCONTROL_NONE));
47+
48+
printf("Adding port RX event to event set.\n");
49+
check(sp_add_port_events(event_set, ports[i], SP_EVENT_RX_READY));
50+
}
51+
52+
/* Now we can call sp_wait() to await any event in the set.
53+
* It will return when an event occurs, or the timeout elapses. */
54+
printf("Waiting up to 5 seconds for RX on any port...\n");
55+
check(sp_wait(event_set, 5000));
56+
57+
/* Iterate over ports to see which have data waiting. */
58+
for (int i = 0; i < num_ports; i++) {
59+
/* Get number of bytes waiting. */
60+
int bytes_waiting = check(sp_input_waiting(ports[i]));
61+
printf("Port %s: %d bytes received.\n",
62+
sp_get_port_name(ports[i]), bytes_waiting);
63+
}
64+
65+
/* Close ports and free resources. */
66+
sp_free_event_set(event_set);
67+
for (int i = 0; i < num_ports; i++) {
68+
check(sp_close(ports[i]));
69+
sp_free_port(ports[i]);
70+
}
71+
72+
return 0;
73+
}
74+
75+
/* Helper function for error handling. */
76+
int check(enum sp_return result)
77+
{
78+
/* For this example we'll just exit on any error by calling abort(). */
79+
char *error_message;
80+
switch (result) {
81+
case SP_ERR_ARG:
82+
printf("Error: Invalid argument.\n");
83+
abort();
84+
case SP_ERR_FAIL:
85+
error_message = sp_last_error_message();
86+
printf("Error: Failed: %s\n", error_message);
87+
sp_free_error_message(error_message);
88+
abort();
89+
case SP_ERR_SUPP:
90+
printf("Error: Not supported.\n");
91+
abort();
92+
case SP_ERR_MEM:
93+
printf("Error: Couldn't allocate memory.\n");
94+
abort();
95+
case SP_OK:
96+
default:
97+
return result;
98+
}
99+
}

‎libserialport.h

+4
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
* - @ref list_ports.c - Getting a list of ports present on the system.
6969
* - @ref port_info.c - Getting information on a particular serial port.
7070
* - @ref port_config.c - Accessing configuration settings of a port.
71+
* - @ref await_events.c - Awaiting events on multiple ports.
7172
* - @ref handle_errors.c - Handling errors returned from the library.
7273
*
7374
* These examples are linked with the API documentation. Each function
@@ -1478,6 +1479,8 @@ SP_API enum sp_return sp_drain(struct sp_port *port);
14781479
*
14791480
* Waiting for events and timeout handling.
14801481
*
1482+
* See @ref await_events.c for an example of awaiting events on multiple ports.
1483+
*
14811484
* @{
14821485
*/
14831486

@@ -1809,6 +1812,7 @@ SP_API const char *sp_get_lib_version_string(void);
18091812
* @example list_ports.c Getting a list of ports present on the system.
18101813
* @example port_info.c Getting information on a particular serial port.
18111814
* @example port_config.c Accessing configuration settings of a port.
1815+
* @example await_events.c - Awaiting events on multiple ports.
18121816
* @example handle_errors.c - Handling errors returned from the library.
18131817
*/
18141818

0 commit comments

Comments
 (0)
Please sign in to comment.