-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathserial.c
36 lines (30 loc) · 867 Bytes
/
serial.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "serial.h"
#include <fcntl.h>
#include <string.h>
#include <asm/ioctls.h>
#include <asm/termbits.h>
#include <sys/ioctl.h>
// Reset signaled with Carrier detect or Ring
#define RESET_PIN (TIOCM_CAR | TIOCM_RNG)
int serial_open(char *port) {
return open(port, O_RDONLY | O_NOCTTY | O_NDELAY);
}
void serial_configure(int fd, unsigned speed) {
struct termios2 tio;
memset(&tio, 0, sizeof(tio));
// 8 data bits, readonly, ignore carrier, even parity, 2 stop bits,
// custom baud rate.
tio.c_cflag = CS8|CREAD|CLOCAL|PARENB|CSTOPB|BOTHER;
tio.c_ospeed = speed;
ioctl(fd, TCSETS2, &tio);
}
int serial_reset_active(int fd) {
unsigned int status;
if (ioctl(fd, TIOCMGET, &status) != 0) {
return -1;
}
return status & RESET_PIN;
}
void serial_wait_reset(int fd) {
ioctl(fd, TIOCMIWAIT, RESET_PIN);
}