2013-04-28 02:35:45 +04:00
|
|
|
/*
|
|
|
|
* This file is part of the libserialport project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
|
|
|
|
* Copyright (C) 2010-2012 Uwe Hermann <uwe@hermann-uwe.de>
|
|
|
|
* Copyright (C) 2013 Martin Ling <martin-libserialport@earth.li>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2013-04-28 14:56:06 +04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
2013-04-28 02:35:45 +04:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
2013-04-28 14:56:06 +04:00
|
|
|
#include <tchar.h>
|
2013-11-04 18:08:03 +04:00
|
|
|
#include <stdio.h>
|
2013-04-28 02:35:45 +04:00
|
|
|
#else
|
|
|
|
#include <termios.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#endif
|
2013-04-28 14:56:06 +04:00
|
|
|
#ifdef __APPLE__
|
2013-11-02 23:14:36 +04:00
|
|
|
#include <IOKit/IOKitLib.h>
|
|
|
|
#include <IOKit/serial/IOSerialKeys.h>
|
|
|
|
#include <sys/syslimits.h>
|
2013-04-28 14:56:06 +04:00
|
|
|
#endif
|
|
|
|
#ifdef __linux__
|
|
|
|
#include "libudev.h"
|
2013-10-27 16:51:55 +04:00
|
|
|
#include "linux/serial.h"
|
2013-04-28 14:56:06 +04:00
|
|
|
#endif
|
2013-04-28 02:35:45 +04:00
|
|
|
|
2013-11-04 16:53:12 +04:00
|
|
|
#include "libserialport.h"
|
2013-04-28 02:35:45 +04:00
|
|
|
|
2013-11-14 17:09:52 +04:00
|
|
|
struct sp_port_data {
|
|
|
|
#ifdef _WIN32
|
|
|
|
DCB dcb;
|
|
|
|
#else
|
|
|
|
struct termios term;
|
2013-11-15 02:27:51 +04:00
|
|
|
int controlbits;
|
2013-11-14 17:09:52 +04:00
|
|
|
int rts;
|
2013-11-15 01:12:17 +04:00
|
|
|
int cts;
|
2013-11-14 17:09:52 +04:00
|
|
|
int dtr;
|
2013-11-15 01:12:17 +04:00
|
|
|
int dsr;
|
2013-11-14 17:09:52 +04:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2013-11-15 01:39:56 +04:00
|
|
|
/* Helper functions for configuring ports. */
|
|
|
|
static int start_config(struct sp_port *port, struct sp_port_data *data);
|
|
|
|
static int set_baudrate(struct sp_port_data *data, int baudrate);
|
|
|
|
static int set_bits(struct sp_port_data *data, int bits);
|
|
|
|
static int set_parity(struct sp_port_data *data, int parity);
|
|
|
|
static int set_stopbits(struct sp_port_data *data, int stopbits);
|
|
|
|
static int set_rts(struct sp_port_data *data, int rts);
|
|
|
|
static int set_cts(struct sp_port_data *data, int cts);
|
|
|
|
static int set_dtr(struct sp_port_data *data, int dtr);
|
|
|
|
static int set_dsr(struct sp_port_data *data, int dsr);
|
|
|
|
static int set_xon_xoff(struct sp_port_data *data, int xon_xoff);
|
|
|
|
static int apply_config(struct sp_port *port, struct sp_port_data *data);
|
|
|
|
|
2013-11-04 02:15:54 +04:00
|
|
|
int sp_get_port_by_name(const char *portname, struct sp_port **port_ptr)
|
2013-11-04 01:17:21 +04:00
|
|
|
{
|
|
|
|
struct sp_port *port;
|
2013-11-04 01:30:43 +04:00
|
|
|
int len;
|
2013-11-04 01:17:21 +04:00
|
|
|
|
2013-11-04 17:42:55 +04:00
|
|
|
if (!port_ptr)
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
|
2013-11-04 02:15:54 +04:00
|
|
|
*port_ptr = NULL;
|
|
|
|
|
2013-11-04 01:35:46 +04:00
|
|
|
if (!portname)
|
2013-11-04 02:15:54 +04:00
|
|
|
return SP_ERR_ARG;
|
2013-11-04 01:35:46 +04:00
|
|
|
|
2013-11-04 01:17:21 +04:00
|
|
|
if (!(port = malloc(sizeof(struct sp_port))))
|
2013-11-04 02:15:54 +04:00
|
|
|
return SP_ERR_MEM;
|
2013-11-04 01:17:21 +04:00
|
|
|
|
2013-11-04 01:30:43 +04:00
|
|
|
len = strlen(portname) + 1;
|
|
|
|
|
2013-11-04 01:17:21 +04:00
|
|
|
if (!(port->name = malloc(len)))
|
|
|
|
{
|
|
|
|
free(port);
|
2013-11-04 02:15:54 +04:00
|
|
|
return SP_ERR_MEM;
|
2013-11-04 01:17:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(port->name, portname, len);
|
|
|
|
|
2013-11-04 02:15:54 +04:00
|
|
|
*port_ptr = port;
|
|
|
|
|
|
|
|
return SP_OK;
|
2013-11-04 01:17:21 +04:00
|
|
|
}
|
|
|
|
|
2013-11-04 17:42:55 +04:00
|
|
|
int sp_copy_port(const struct sp_port *port, struct sp_port **copy_ptr)
|
|
|
|
{
|
|
|
|
if (!copy_ptr)
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
|
|
|
|
*copy_ptr = NULL;
|
|
|
|
|
|
|
|
if (!port || !port->name)
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
|
|
|
|
return sp_get_port_by_name(port->name, copy_ptr);
|
|
|
|
}
|
|
|
|
|
2013-11-04 02:27:59 +04:00
|
|
|
void sp_free_port(struct sp_port *port)
|
|
|
|
{
|
|
|
|
if (!port)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (port->name)
|
|
|
|
free(port->name);
|
|
|
|
|
|
|
|
free(port);
|
|
|
|
}
|
|
|
|
|
2013-11-04 01:30:43 +04:00
|
|
|
static struct sp_port **sp_list_append(struct sp_port **list, const char *portname)
|
2013-04-28 14:56:06 +04:00
|
|
|
{
|
|
|
|
void *tmp;
|
|
|
|
unsigned int count;
|
2013-11-14 20:33:53 +04:00
|
|
|
|
2013-04-28 14:56:06 +04:00
|
|
|
for (count = 0; list[count]; count++);
|
2013-11-04 01:17:21 +04:00
|
|
|
if (!(tmp = realloc(list, sizeof(struct sp_port *) * (count + 2))))
|
2013-04-28 14:56:06 +04:00
|
|
|
goto fail;
|
|
|
|
list = tmp;
|
2013-11-04 02:15:54 +04:00
|
|
|
if (sp_get_port_by_name(portname, &list[count]) != SP_OK)
|
2013-04-28 14:56:06 +04:00
|
|
|
goto fail;
|
2013-05-08 05:55:43 +04:00
|
|
|
list[count + 1] = NULL;
|
2013-04-28 14:56:06 +04:00
|
|
|
return list;
|
2013-11-14 20:33:53 +04:00
|
|
|
|
2013-04-28 14:56:06 +04:00
|
|
|
fail:
|
|
|
|
sp_free_port_list(list);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-11-04 02:15:54 +04:00
|
|
|
int sp_list_ports(struct sp_port ***list_ptr)
|
2013-04-28 14:56:06 +04:00
|
|
|
{
|
2013-11-04 01:17:21 +04:00
|
|
|
struct sp_port **list;
|
2013-11-04 02:15:54 +04:00
|
|
|
int ret = SP_OK;
|
2013-11-04 00:50:01 +04:00
|
|
|
|
2013-11-04 01:17:21 +04:00
|
|
|
if (!(list = malloc(sizeof(struct sp_port **))))
|
2013-11-14 20:33:53 +04:00
|
|
|
return SP_ERR_MEM;
|
2013-11-04 00:50:01 +04:00
|
|
|
|
|
|
|
list[0] = NULL;
|
2013-04-28 14:56:06 +04:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
HKEY key;
|
2013-10-28 05:32:06 +04:00
|
|
|
TCHAR *value, *data;
|
|
|
|
DWORD max_value_len, max_data_size, max_data_len;
|
|
|
|
DWORD value_len, data_size, data_len;
|
2013-04-28 14:56:06 +04:00
|
|
|
DWORD type, index = 0;
|
2013-11-04 01:22:21 +04:00
|
|
|
char *name;
|
|
|
|
int name_len;
|
2013-04-28 14:56:06 +04:00
|
|
|
|
|
|
|
if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, _T("HARDWARE\\DEVICEMAP\\SERIALCOMM"),
|
|
|
|
0, KEY_QUERY_VALUE, &key) != ERROR_SUCCESS)
|
2013-11-04 02:15:54 +04:00
|
|
|
{
|
|
|
|
ret = SP_ERR_FAIL;
|
|
|
|
goto out_done;
|
|
|
|
}
|
2013-04-28 14:56:06 +04:00
|
|
|
if (RegQueryInfoKey(key, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
2013-10-28 05:32:06 +04:00
|
|
|
&max_value_len, &max_data_size, NULL, NULL) != ERROR_SUCCESS)
|
2013-11-04 02:15:54 +04:00
|
|
|
{
|
|
|
|
ret = SP_ERR_FAIL;
|
2013-04-28 14:56:06 +04:00
|
|
|
goto out_close;
|
2013-11-04 02:15:54 +04:00
|
|
|
}
|
2013-04-28 14:56:06 +04:00
|
|
|
max_data_len = max_data_size / sizeof(TCHAR);
|
2013-10-28 05:32:06 +04:00
|
|
|
if (!(value = malloc((max_value_len + 1) * sizeof(TCHAR))))
|
2013-11-04 02:15:54 +04:00
|
|
|
{
|
|
|
|
ret = SP_ERR_MEM;
|
2013-04-28 14:56:06 +04:00
|
|
|
goto out_close;
|
2013-11-04 02:15:54 +04:00
|
|
|
}
|
2013-04-28 14:56:06 +04:00
|
|
|
if (!(data = malloc((max_data_len + 1) * sizeof(TCHAR))))
|
2013-11-04 02:15:54 +04:00
|
|
|
{
|
|
|
|
ret = SP_ERR_MEM;
|
2013-10-28 05:32:06 +04:00
|
|
|
goto out_free_value;
|
2013-11-04 02:15:54 +04:00
|
|
|
}
|
2013-04-28 14:56:06 +04:00
|
|
|
while (
|
2013-11-04 06:16:21 +04:00
|
|
|
value_len = max_value_len + 1,
|
2013-04-28 14:56:06 +04:00
|
|
|
data_size = max_data_size,
|
2013-10-28 05:32:06 +04:00
|
|
|
RegEnumValue(key, index, value, &value_len,
|
2013-04-28 14:56:06 +04:00
|
|
|
NULL, &type, (LPBYTE)data, &data_size) == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
data_len = data_size / sizeof(TCHAR);
|
|
|
|
data[data_len] = '\0';
|
2013-11-04 01:22:21 +04:00
|
|
|
#ifdef UNICODE
|
|
|
|
name_len = WideCharToMultiByte(CP_ACP, 0, data, -1, NULL, 0, NULL, NULL)
|
|
|
|
#else
|
|
|
|
name_len = data_len + 1;
|
|
|
|
#endif
|
|
|
|
if (!(name = malloc(name_len)))
|
2013-11-04 02:15:54 +04:00
|
|
|
{
|
|
|
|
ret = SP_ERR_MEM;
|
2013-11-04 01:22:21 +04:00
|
|
|
goto out;
|
2013-11-04 02:15:54 +04:00
|
|
|
}
|
2013-11-04 01:22:21 +04:00
|
|
|
#ifdef UNICODE
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, data, -1, name, name_len, NULL, NULL);
|
|
|
|
#else
|
|
|
|
strcpy(name, data);
|
|
|
|
#endif
|
2013-11-04 02:15:54 +04:00
|
|
|
if (type == REG_SZ && !(list = sp_list_append(list, name)))
|
|
|
|
{
|
|
|
|
ret = SP_ERR_MEM;
|
|
|
|
goto out;
|
|
|
|
}
|
2013-04-28 14:56:06 +04:00
|
|
|
index++;
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
free(data);
|
2013-10-28 05:32:06 +04:00
|
|
|
out_free_value:
|
|
|
|
free(value);
|
2013-04-28 14:56:06 +04:00
|
|
|
out_close:
|
|
|
|
RegCloseKey(key);
|
2013-11-04 02:15:54 +04:00
|
|
|
out_done:
|
2013-04-28 14:56:06 +04:00
|
|
|
#endif
|
|
|
|
#ifdef __APPLE__
|
|
|
|
mach_port_t master;
|
|
|
|
CFMutableDictionaryRef classes;
|
|
|
|
io_iterator_t iter;
|
|
|
|
char *path;
|
|
|
|
io_object_t port;
|
|
|
|
CFTypeRef cf_path;
|
|
|
|
Boolean result;
|
|
|
|
|
|
|
|
if (IOMasterPort(MACH_PORT_NULL, &master) != KERN_SUCCESS)
|
2013-11-04 02:15:54 +04:00
|
|
|
{
|
|
|
|
ret = SP_ERR_FAIL;
|
|
|
|
goto out_done;
|
|
|
|
}
|
2013-04-28 14:56:06 +04:00
|
|
|
|
|
|
|
if (!(classes = IOServiceMatching(kIOSerialBSDServiceValue)))
|
2013-11-04 02:15:54 +04:00
|
|
|
{
|
|
|
|
ret = SP_ERR_FAIL;
|
|
|
|
goto out_done;
|
|
|
|
}
|
2013-04-28 14:56:06 +04:00
|
|
|
|
|
|
|
CFDictionarySetValue(classes,
|
|
|
|
CFSTR(kIOSerialBSDTypeKey), CFSTR(kIOSerialBSDAllTypes));
|
|
|
|
|
2013-11-04 04:00:05 +04:00
|
|
|
if (IOServiceGetMatchingServices(master, classes, &iter) != KERN_SUCCESS)
|
2013-11-04 02:15:54 +04:00
|
|
|
{
|
|
|
|
ret = SP_ERR_FAIL;
|
|
|
|
goto out_done;
|
|
|
|
}
|
2013-04-28 14:56:06 +04:00
|
|
|
|
|
|
|
if (!(path = malloc(PATH_MAX)))
|
2013-11-04 02:15:54 +04:00
|
|
|
{
|
|
|
|
ret = SP_ERR_MEM;
|
2013-04-28 14:56:06 +04:00
|
|
|
goto out_release;
|
2013-11-04 02:15:54 +04:00
|
|
|
}
|
2013-04-28 14:56:06 +04:00
|
|
|
|
2013-11-02 23:14:36 +04:00
|
|
|
while ((port = IOIteratorNext(iter))) {
|
2013-04-28 14:56:06 +04:00
|
|
|
cf_path = IORegistryEntryCreateCFProperty(port,
|
|
|
|
CFSTR(kIOCalloutDeviceKey), kCFAllocatorDefault, 0);
|
|
|
|
if (cf_path) {
|
|
|
|
result = CFStringGetCString(cf_path,
|
|
|
|
path, PATH_MAX, kCFStringEncodingASCII);
|
|
|
|
CFRelease(cf_path);
|
2013-11-04 02:15:54 +04:00
|
|
|
if (result && !(list = sp_list_append(list, path)))
|
|
|
|
{
|
|
|
|
ret = SP_ERR_MEM;
|
|
|
|
IOObjectRelease(port);
|
|
|
|
goto out;
|
|
|
|
}
|
2013-04-28 14:56:06 +04:00
|
|
|
}
|
|
|
|
IOObjectRelease(port);
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
free(path);
|
|
|
|
out_release:
|
|
|
|
IOObjectRelease(iter);
|
2013-11-04 02:15:54 +04:00
|
|
|
out_done:
|
2013-04-28 14:56:06 +04:00
|
|
|
#endif
|
|
|
|
#ifdef __linux__
|
|
|
|
struct udev *ud;
|
|
|
|
struct udev_enumerate *ud_enumerate;
|
|
|
|
struct udev_list_entry *ud_list;
|
|
|
|
struct udev_list_entry *ud_entry;
|
|
|
|
const char *path;
|
2013-10-27 16:09:37 +04:00
|
|
|
struct udev_device *ud_dev, *ud_parent;
|
2013-04-28 14:56:06 +04:00
|
|
|
const char *name;
|
2013-10-27 16:51:55 +04:00
|
|
|
const char *driver;
|
|
|
|
int fd, ioctl_result;
|
|
|
|
struct serial_struct serial_info;
|
2013-04-28 14:56:06 +04:00
|
|
|
|
|
|
|
ud = udev_new();
|
|
|
|
ud_enumerate = udev_enumerate_new(ud);
|
|
|
|
udev_enumerate_add_match_subsystem(ud_enumerate, "tty");
|
|
|
|
udev_enumerate_scan_devices(ud_enumerate);
|
|
|
|
ud_list = udev_enumerate_get_list_entry(ud_enumerate);
|
|
|
|
udev_list_entry_foreach(ud_entry, ud_list)
|
|
|
|
{
|
|
|
|
path = udev_list_entry_get_name(ud_entry);
|
|
|
|
ud_dev = udev_device_new_from_syspath(ud, path);
|
2013-10-27 16:09:37 +04:00
|
|
|
/* If there is no parent device, this is a virtual tty. */
|
|
|
|
ud_parent = udev_device_get_parent(ud_dev);
|
|
|
|
if (ud_parent == NULL)
|
|
|
|
{
|
|
|
|
udev_device_unref(ud_dev);
|
|
|
|
continue;
|
|
|
|
}
|
2013-04-28 14:56:06 +04:00
|
|
|
name = udev_device_get_devnode(ud_dev);
|
2013-10-27 16:51:55 +04:00
|
|
|
/* The serial8250 driver has a hardcoded number of ports.
|
|
|
|
* The only way to tell which actually exist on a given system
|
|
|
|
* is to try to open them and make an ioctl call. */
|
|
|
|
driver = udev_device_get_driver(ud_parent);
|
|
|
|
if (driver && !strcmp(driver, "serial8250"))
|
|
|
|
{
|
|
|
|
if ((fd = open(name, O_RDWR | O_NONBLOCK | O_NOCTTY)) < 0)
|
|
|
|
goto skip;
|
|
|
|
ioctl_result = ioctl(fd, TIOCGSERIAL, &serial_info);
|
|
|
|
close(fd);
|
|
|
|
if (ioctl_result != 0)
|
|
|
|
goto skip;
|
|
|
|
if (serial_info.type == PORT_UNKNOWN)
|
|
|
|
goto skip;
|
|
|
|
}
|
2013-11-04 01:30:43 +04:00
|
|
|
list = sp_list_append(list, name);
|
2013-10-27 16:51:55 +04:00
|
|
|
skip:
|
2013-04-28 14:56:06 +04:00
|
|
|
udev_device_unref(ud_dev);
|
|
|
|
if (!list)
|
2013-11-04 02:15:54 +04:00
|
|
|
{
|
|
|
|
ret = SP_ERR_MEM;
|
2013-04-28 14:56:06 +04:00
|
|
|
goto out;
|
2013-11-04 02:15:54 +04:00
|
|
|
}
|
2013-04-28 14:56:06 +04:00
|
|
|
}
|
|
|
|
out:
|
|
|
|
udev_enumerate_unref(ud_enumerate);
|
|
|
|
udev_unref(ud);
|
|
|
|
#endif
|
2013-11-04 02:15:54 +04:00
|
|
|
|
|
|
|
if (ret == SP_OK)
|
|
|
|
{
|
|
|
|
*list_ptr = list;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (list)
|
|
|
|
sp_free_port_list(list);
|
|
|
|
|
|
|
|
*list_ptr = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2013-04-28 14:56:06 +04:00
|
|
|
}
|
|
|
|
|
2013-11-04 01:17:21 +04:00
|
|
|
void sp_free_port_list(struct sp_port **list)
|
2013-04-28 14:56:06 +04:00
|
|
|
{
|
|
|
|
unsigned int i;
|
2013-11-14 20:33:53 +04:00
|
|
|
|
2013-04-28 14:56:06 +04:00
|
|
|
for (i = 0; list[i]; i++)
|
2013-11-04 02:27:59 +04:00
|
|
|
sp_free_port(list[i]);
|
2013-04-28 14:56:06 +04:00
|
|
|
free(list);
|
|
|
|
}
|
|
|
|
|
2013-04-28 02:35:45 +04:00
|
|
|
static int sp_validate_port(struct sp_port *port)
|
|
|
|
{
|
|
|
|
if (port == NULL)
|
|
|
|
return 0;
|
|
|
|
#ifdef _WIN32
|
|
|
|
if (port->hdl == INVALID_HANDLE_VALUE)
|
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
if (port->fd < 0)
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define CHECK_PORT() do { if (!sp_validate_port(port)) return SP_ERR_ARG; } while (0)
|
|
|
|
|
2013-11-04 01:17:21 +04:00
|
|
|
int sp_open(struct sp_port *port, int flags)
|
2013-04-28 02:35:45 +04:00
|
|
|
{
|
|
|
|
if (!port)
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
DWORD desired_access = 0, flags_and_attributes = 0;
|
2013-11-04 17:08:09 +04:00
|
|
|
char *escaped_port_name;
|
|
|
|
|
|
|
|
/* Prefix port name with '\\.\' to work with ports above COM9. */
|
|
|
|
if (!(escaped_port_name = malloc(strlen(port->name + 5))))
|
|
|
|
return SP_ERR_MEM;
|
|
|
|
sprintf(escaped_port_name, "\\\\.\\%s", port->name);
|
|
|
|
|
2013-04-28 02:35:45 +04:00
|
|
|
/* Map 'flags' to the OS-specific settings. */
|
|
|
|
desired_access |= GENERIC_READ;
|
|
|
|
flags_and_attributes = FILE_ATTRIBUTE_NORMAL;
|
|
|
|
if (flags & SP_MODE_RDWR)
|
|
|
|
desired_access |= GENERIC_WRITE;
|
|
|
|
if (flags & SP_MODE_NONBLOCK)
|
|
|
|
flags_and_attributes |= FILE_FLAG_OVERLAPPED;
|
|
|
|
|
2013-11-04 17:08:09 +04:00
|
|
|
port->hdl = CreateFile(escaped_port_name, desired_access, 0, 0,
|
2013-04-28 02:35:45 +04:00
|
|
|
OPEN_EXISTING, flags_and_attributes, 0);
|
2013-11-04 17:08:09 +04:00
|
|
|
|
|
|
|
free(escaped_port_name);
|
|
|
|
|
2013-04-28 02:35:45 +04:00
|
|
|
if (port->hdl == INVALID_HANDLE_VALUE)
|
|
|
|
return SP_ERR_FAIL;
|
|
|
|
#else
|
|
|
|
int flags_local = 0;
|
2013-11-15 01:43:07 +04:00
|
|
|
struct sp_port_data data;
|
2013-11-14 20:33:53 +04:00
|
|
|
|
2013-04-28 02:35:45 +04:00
|
|
|
/* Map 'flags' to the OS-specific settings. */
|
|
|
|
if (flags & SP_MODE_RDWR)
|
|
|
|
flags_local |= O_RDWR;
|
|
|
|
if (flags & SP_MODE_RDONLY)
|
|
|
|
flags_local |= O_RDONLY;
|
|
|
|
if (flags & SP_MODE_NONBLOCK)
|
|
|
|
flags_local |= O_NONBLOCK;
|
|
|
|
|
|
|
|
if ((port->fd = open(port->name, flags_local)) < 0)
|
|
|
|
return SP_ERR_FAIL;
|
2013-11-15 01:43:07 +04:00
|
|
|
|
|
|
|
start_config(port, &data);
|
|
|
|
|
|
|
|
/* Turn off all serial port cooking. */
|
|
|
|
data.term.c_iflag &= ~(ISTRIP | INLCR | ICRNL);
|
|
|
|
data.term.c_oflag &= ~(ONLCR | OCRNL | ONOCR);
|
|
|
|
#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__)
|
|
|
|
data.term.c_oflag &= ~OFILL;
|
|
|
|
#endif
|
|
|
|
/* Disable canonical mode, and don't echo input characters. */
|
|
|
|
data.term.c_lflag &= ~(ICANON | ECHO);
|
|
|
|
|
|
|
|
/* Ignore modem status lines; enable receiver */
|
|
|
|
data.term.c_cflag |= (CLOCAL | CREAD);
|
|
|
|
|
|
|
|
apply_config(port, &data);
|
2013-04-28 02:35:45 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return SP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int sp_close(struct sp_port *port)
|
|
|
|
{
|
|
|
|
CHECK_PORT();
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
/* Returns non-zero upon success, 0 upon failure. */
|
|
|
|
if (CloseHandle(port->hdl) == 0)
|
|
|
|
return SP_ERR_FAIL;
|
|
|
|
#else
|
|
|
|
/* Returns 0 upon success, -1 upon failure. */
|
|
|
|
if (close(port->fd) == -1)
|
|
|
|
return SP_ERR_FAIL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return SP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int sp_flush(struct sp_port *port)
|
|
|
|
{
|
|
|
|
CHECK_PORT();
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
/* Returns non-zero upon success, 0 upon failure. */
|
|
|
|
if (PurgeComm(port->hdl, PURGE_RXCLEAR | PURGE_TXCLEAR) == 0)
|
|
|
|
return SP_ERR_FAIL;
|
|
|
|
#else
|
|
|
|
/* Returns 0 upon success, -1 upon failure. */
|
|
|
|
if (tcflush(port->fd, TCIOFLUSH) < 0)
|
|
|
|
return SP_ERR_FAIL;
|
|
|
|
#endif
|
|
|
|
return SP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int sp_write(struct sp_port *port, const void *buf, size_t count)
|
|
|
|
{
|
|
|
|
CHECK_PORT();
|
|
|
|
|
|
|
|
if (!buf)
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
DWORD written = 0;
|
2013-11-14 20:33:53 +04:00
|
|
|
|
2013-04-28 02:35:45 +04:00
|
|
|
/* Returns non-zero upon success, 0 upon failure. */
|
|
|
|
if (WriteFile(port->hdl, buf, count, &written, NULL) == 0)
|
|
|
|
return SP_ERR_FAIL;
|
|
|
|
return written;
|
|
|
|
#else
|
|
|
|
/* Returns the number of bytes written, or -1 upon failure. */
|
|
|
|
ssize_t written = write(port->fd, buf, count);
|
2013-11-14 20:33:53 +04:00
|
|
|
|
2013-04-28 02:35:45 +04:00
|
|
|
if (written < 0)
|
|
|
|
return SP_ERR_FAIL;
|
|
|
|
else
|
2013-11-14 20:33:53 +04:00
|
|
|
return written;
|
2013-04-28 02:35:45 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int sp_read(struct sp_port *port, void *buf, size_t count)
|
|
|
|
{
|
|
|
|
CHECK_PORT();
|
|
|
|
|
|
|
|
if (!buf)
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
DWORD bytes_read = 0;
|
2013-11-14 20:33:53 +04:00
|
|
|
|
2013-04-28 02:35:45 +04:00
|
|
|
/* Returns non-zero upon success, 0 upon failure. */
|
|
|
|
if (ReadFile(port->hdl, buf, count, &bytes_read, NULL) == 0)
|
|
|
|
return SP_ERR_FAIL;
|
|
|
|
return bytes_read;
|
|
|
|
#else
|
|
|
|
ssize_t bytes_read;
|
2013-11-14 20:33:53 +04:00
|
|
|
|
2013-04-28 02:35:45 +04:00
|
|
|
/* Returns the number of bytes read, or -1 upon failure. */
|
|
|
|
if ((bytes_read = read(port->fd, buf, count)) < 0)
|
|
|
|
return SP_ERR_FAIL;
|
|
|
|
return bytes_read;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-11-14 17:09:52 +04:00
|
|
|
static int start_config(struct sp_port *port, struct sp_port_data *data)
|
2013-04-28 02:35:45 +04:00
|
|
|
{
|
|
|
|
CHECK_PORT();
|
|
|
|
#ifdef _WIN32
|
2013-11-14 17:09:52 +04:00
|
|
|
if (!GetCommState(port->hdl, &data->dcb))
|
2013-04-28 02:35:45 +04:00
|
|
|
return SP_ERR_FAIL;
|
2013-11-14 17:09:52 +04:00
|
|
|
#else
|
|
|
|
if (tcgetattr(port->fd, &data->term) < 0)
|
|
|
|
return SP_ERR_FAIL;
|
2013-11-15 01:27:06 +04:00
|
|
|
|
2013-11-15 02:27:51 +04:00
|
|
|
if (ioctl(port->fd, TIOCMGET, &data->controlbits) < 0)
|
2013-11-15 01:27:06 +04:00
|
|
|
return SP_ERR_FAIL;
|
|
|
|
|
|
|
|
if (data->term.c_cflag & CRTSCTS) {
|
|
|
|
data->rts = SP_RTS_FLOW_CONTROL;
|
|
|
|
data->cts = SP_CTS_FLOW_CONTROL;
|
|
|
|
} else {
|
2013-11-15 02:27:51 +04:00
|
|
|
data->rts = (data->controlbits & TIOCM_RTS) ? SP_RTS_ON : SP_RTS_OFF;
|
2013-11-15 01:27:06 +04:00
|
|
|
data->cts = SP_CTS_IGNORE;
|
|
|
|
}
|
|
|
|
|
2013-11-15 02:27:51 +04:00
|
|
|
data->dtr = (data->controlbits & TIOCM_DTR) ? SP_DTR_ON : SP_DTR_OFF;
|
2013-11-15 01:27:06 +04:00
|
|
|
data->dsr = SP_DSR_IGNORE;
|
2013-11-14 17:09:52 +04:00
|
|
|
#endif
|
|
|
|
return SP_OK;
|
|
|
|
}
|
2013-04-28 02:35:45 +04:00
|
|
|
|
2013-11-14 17:09:52 +04:00
|
|
|
static int set_baudrate(struct sp_port_data *data, int baudrate)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
2013-04-28 02:35:45 +04:00
|
|
|
switch (baudrate) {
|
|
|
|
/*
|
|
|
|
* The baudrates 50/75/134/150/200/1800/230400/460800 do not seem to
|
|
|
|
* have documented CBR_* macros.
|
|
|
|
*/
|
|
|
|
case 110:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.BaudRate = CBR_110;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 300:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.BaudRate = CBR_300;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 600:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.BaudRate = CBR_600;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 1200:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.BaudRate = CBR_1200;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 2400:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.BaudRate = CBR_2400;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 4800:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.BaudRate = CBR_4800;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 9600:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.BaudRate = CBR_9600;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 14400:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.BaudRate = CBR_14400; /* Not available on Unix? */
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 19200:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.BaudRate = CBR_19200;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 38400:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.BaudRate = CBR_38400;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 57600:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.BaudRate = CBR_57600;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 115200:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.BaudRate = CBR_115200;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 128000:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.BaudRate = CBR_128000; /* Not available on Unix? */
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 256000:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.BaudRate = CBR_256000; /* Not available on Unix? */
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
}
|
|
|
|
#else
|
2013-11-15 00:30:26 +04:00
|
|
|
speed_t baud;
|
2013-04-28 02:35:45 +04:00
|
|
|
switch (baudrate) {
|
|
|
|
case 50:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B50;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 75:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B75;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 110:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B110;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 134:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B134;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 150:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B150;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 200:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B200;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 300:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B300;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 600:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B600;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 1200:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B1200;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 1800:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B1800;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 2400:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B2400;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 4800:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B4800;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 9600:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B9600;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 19200:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B19200;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 38400:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B38400;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 57600:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B57600;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 115200:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B115200;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 230400:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B230400;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
#if !defined(__APPLE__) && !defined(__OpenBSD__)
|
|
|
|
case 460800:
|
2013-11-15 00:30:26 +04:00
|
|
|
baud = B460800;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
}
|
2013-11-15 00:30:26 +04:00
|
|
|
|
|
|
|
if (cfsetospeed(&data->term, baud) < 0)
|
|
|
|
return SP_ERR_FAIL;
|
|
|
|
|
|
|
|
if (cfsetispeed(&data->term, baud) < 0)
|
|
|
|
return SP_ERR_FAIL;
|
|
|
|
|
2013-11-14 17:09:52 +04:00
|
|
|
#endif
|
|
|
|
return SP_OK;
|
|
|
|
}
|
2013-04-28 02:35:45 +04:00
|
|
|
|
2013-11-14 17:09:52 +04:00
|
|
|
static int set_bits(struct sp_port_data *data, int bits)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
data->dcb.ByteSize = bits;
|
|
|
|
#else
|
|
|
|
data->term.c_cflag &= ~CSIZE;
|
2013-04-28 02:35:45 +04:00
|
|
|
switch (bits) {
|
|
|
|
case 8:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->term.c_cflag |= CS8;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 7:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->term.c_cflag |= CS7;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
2013-11-04 18:02:51 +04:00
|
|
|
case 6:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->term.c_cflag |= CS6;
|
2013-11-04 18:02:51 +04:00
|
|
|
break;
|
2013-04-28 02:35:45 +04:00
|
|
|
default:
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
}
|
2013-11-14 17:09:52 +04:00
|
|
|
#endif
|
|
|
|
return SP_OK;
|
|
|
|
}
|
2013-04-28 02:35:45 +04:00
|
|
|
|
2013-11-14 17:09:52 +04:00
|
|
|
static int set_parity(struct sp_port_data *data, int parity)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
switch (parity) {
|
|
|
|
/* Note: There's also SPACEPARITY, MARKPARITY (unneeded so far). */
|
|
|
|
case SP_PARITY_NONE:
|
|
|
|
data->dcb.Parity = NOPARITY;
|
|
|
|
break;
|
|
|
|
case SP_PARITY_EVEN:
|
|
|
|
data->dcb.Parity = EVENPARITY;
|
|
|
|
break;
|
|
|
|
case SP_PARITY_ODD:
|
|
|
|
data->dcb.Parity = ODDPARITY;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
data->term.c_iflag &= ~IGNPAR;
|
|
|
|
data->term.c_cflag &= ~(PARENB | PARODD);
|
|
|
|
switch (parity) {
|
|
|
|
case SP_PARITY_NONE:
|
|
|
|
data->term.c_iflag |= IGNPAR;
|
|
|
|
break;
|
|
|
|
case SP_PARITY_EVEN:
|
|
|
|
data->term.c_cflag |= PARENB;
|
|
|
|
break;
|
|
|
|
case SP_PARITY_ODD:
|
|
|
|
data->term.c_cflag |= PARENB | PARODD;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return SP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int set_stopbits(struct sp_port_data *data, int stopbits)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
2013-04-28 02:35:45 +04:00
|
|
|
switch (stopbits) {
|
2013-11-14 17:09:52 +04:00
|
|
|
/* Note: There's also ONE5STOPBITS == 1.5 (unneeded so far). */
|
2013-04-28 02:35:45 +04:00
|
|
|
case 1:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.StopBits = ONESTOPBIT;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 2:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->dcb.StopBits = TWOSTOPBITS;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
}
|
2013-11-14 17:09:52 +04:00
|
|
|
#else
|
|
|
|
data->term.c_cflag &= ~CSTOPB;
|
|
|
|
switch (stopbits) {
|
2013-04-28 02:35:45 +04:00
|
|
|
case 1:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->term.c_cflag &= ~CSTOPB;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
case 2:
|
2013-11-14 17:09:52 +04:00
|
|
|
data->term.c_cflag |= CSTOPB;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
}
|
2013-11-14 17:09:52 +04:00
|
|
|
#endif
|
|
|
|
return SP_OK;
|
|
|
|
}
|
2013-04-28 02:35:45 +04:00
|
|
|
|
2013-11-15 01:12:17 +04:00
|
|
|
static int set_rts(struct sp_port_data *data, int rts)
|
2013-11-14 17:09:52 +04:00
|
|
|
{
|
2013-11-15 01:12:17 +04:00
|
|
|
#ifdef _WIN32
|
|
|
|
switch (rts) {
|
|
|
|
case SP_RTS_OFF:
|
|
|
|
data->dcb.fRtsControl = RTS_CONTROL_DISABLE;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
2013-11-15 01:12:17 +04:00
|
|
|
case SP_RTS_ON:
|
|
|
|
data->dcb.fRtsControl = RTS_CONTROL_ENABLE;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
2013-11-15 01:12:17 +04:00
|
|
|
case SP_RTS_FLOW_CONTROL:
|
|
|
|
data->dcb.fRtsControl = RTS_CONTROL_HANDSHAKE;
|
2013-04-28 02:35:45 +04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
}
|
2013-11-15 01:12:17 +04:00
|
|
|
#else
|
|
|
|
data->rts = rts;
|
2013-11-14 17:09:52 +04:00
|
|
|
#endif
|
|
|
|
return SP_OK;
|
|
|
|
}
|
|
|
|
|
2013-11-15 01:12:17 +04:00
|
|
|
static int set_cts(struct sp_port_data *data, int cts)
|
2013-11-14 17:09:52 +04:00
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
2013-11-15 01:12:17 +04:00
|
|
|
switch (cts) {
|
|
|
|
case SP_CTS_IGNORE:
|
|
|
|
data->dcb.fOutxCtsFlow = FALSE;
|
|
|
|
break;
|
|
|
|
case SP_CTS_FLOW_CONTROL:
|
|
|
|
data->dcb.fOutxCtsFlow = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
}
|
2013-11-14 17:09:52 +04:00
|
|
|
#else
|
2013-11-15 01:12:17 +04:00
|
|
|
data->cts = cts;
|
2013-11-14 17:09:52 +04:00
|
|
|
#endif
|
|
|
|
return SP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int set_dtr(struct sp_port_data *data, int dtr)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
2013-11-15 01:12:17 +04:00
|
|
|
switch (dtr) {
|
|
|
|
case SP_DTR_OFF:
|
2013-11-14 23:45:42 +04:00
|
|
|
data->dcb.fDtrControl = DTR_CONTROL_DISABLE;
|
2013-11-15 01:12:17 +04:00
|
|
|
break;
|
|
|
|
case SP_DTR_ON:
|
|
|
|
data->dcb.fDtrControl = DTR_CONTROL_ENABLE;
|
|
|
|
break;
|
|
|
|
case SP_DTR_FLOW_CONTROL:
|
|
|
|
data->dcb.fDtrControl = DTR_CONTROL_HANDSHAKE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
}
|
2013-11-14 17:09:52 +04:00
|
|
|
#else
|
|
|
|
data->dtr = dtr;
|
|
|
|
#endif
|
|
|
|
return SP_OK;
|
|
|
|
}
|
|
|
|
|
2013-11-15 01:12:17 +04:00
|
|
|
static int set_dsr(struct sp_port_data *data, int dsr)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
switch (dsr) {
|
|
|
|
case SP_DSR_IGNORE:
|
|
|
|
data->dcb.fOutxDsrFlow = FALSE;
|
|
|
|
break;
|
|
|
|
case SP_DSR_FLOW_CONTROL:
|
|
|
|
data->dcb.fOutxDsrFlow = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
data->dsr = dsr;
|
|
|
|
#endif
|
|
|
|
return SP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int set_xon_xoff(struct sp_port_data *data, int xon_xoff)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
switch (xon_xoff) {
|
|
|
|
case SP_XONXOFF_DISABLED:
|
|
|
|
data->dcb.fInX = FALSE;
|
|
|
|
data->dcb.fOutX = FALSE;
|
|
|
|
break;
|
|
|
|
case SP_XONXOFF_IN:
|
|
|
|
data->dcb.fInX = TRUE;
|
|
|
|
data->dcb.fOutX = FALSE;
|
|
|
|
break;
|
|
|
|
case SP_XONXOFF_OUT:
|
|
|
|
data->dcb.fInX = FALSE;
|
|
|
|
data->dcb.fOutX = TRUE;
|
|
|
|
break;
|
|
|
|
case SP_XONXOFF_INOUT:
|
|
|
|
data->dcb.fInX = TRUE;
|
|
|
|
data->dcb.fOutX = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
data->term.c_iflag &= ~(IXON | IXOFF | IXANY);
|
|
|
|
switch (xon_xoff) {
|
|
|
|
case SP_XONXOFF_DISABLED:
|
|
|
|
break;
|
|
|
|
case SP_XONXOFF_IN:
|
|
|
|
data->term.c_iflag |= IXOFF;
|
|
|
|
break;
|
|
|
|
case SP_XONXOFF_OUT:
|
|
|
|
data->term.c_iflag |= IXON | IXANY;
|
|
|
|
break;
|
|
|
|
case SP_XONXOFF_INOUT:
|
|
|
|
data->term.c_iflag |= IXON | IXOFF | IXANY;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return SP_OK;
|
|
|
|
}
|
|
|
|
|
2013-11-14 17:09:52 +04:00
|
|
|
static int apply_config(struct sp_port *port, struct sp_port_data *data)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
if (!SetCommState(port->hdl, &data->dcb))
|
|
|
|
return SP_ERR_FAIL;
|
|
|
|
#else
|
|
|
|
int controlbits;
|
2013-04-28 02:35:45 +04:00
|
|
|
|
2013-11-15 01:12:17 +04:00
|
|
|
/* Asymmetric use of RTS/CTS not supported yet. */
|
|
|
|
if ((data->rts == SP_RTS_FLOW_CONTROL) != (data->cts == SP_CTS_FLOW_CONTROL))
|
|
|
|
return SP_ERR_ARG;
|
|
|
|
|
|
|
|
/* DTR/DSR flow control not supported yet. */
|
|
|
|
if (data->dtr == SP_DTR_FLOW_CONTROL || data->dsr == SP_DSR_FLOW_CONTROL)
|
|
|
|
return SP_ERR_ARG;
|
2013-04-28 02:35:45 +04:00
|
|
|
|
2013-11-15 01:12:17 +04:00
|
|
|
if (data->rts == SP_RTS_FLOW_CONTROL)
|
|
|
|
data->term.c_iflag |= CRTSCTS;
|
|
|
|
else
|
|
|
|
{
|
2013-04-28 02:35:45 +04:00
|
|
|
controlbits = TIOCM_RTS;
|
2013-11-15 01:12:17 +04:00
|
|
|
if (ioctl(port->fd, data->rts == SP_RTS_ON ? TIOCMBIS : TIOCMBIC,
|
2013-04-28 02:35:45 +04:00
|
|
|
&controlbits) < 0)
|
|
|
|
return SP_ERR_FAIL;
|
|
|
|
}
|
|
|
|
|
2013-11-15 01:12:17 +04:00
|
|
|
controlbits = TIOCM_DTR;
|
|
|
|
if (ioctl(port->fd, data->dtr == SP_DTR_ON ? TIOCMBIS : TIOCMBIC,
|
|
|
|
&controlbits) < 0)
|
|
|
|
return SP_ERR_FAIL;
|
|
|
|
|
|
|
|
/* Write the configured settings. */
|
|
|
|
if (tcsetattr(port->fd, TCSADRAIN, &data->term) < 0)
|
|
|
|
return SP_ERR_FAIL;
|
2013-04-28 02:35:45 +04:00
|
|
|
#endif
|
2013-11-14 17:09:52 +04:00
|
|
|
return SP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define TRY(x) do { int ret = x; if (ret != SP_OK) return ret; } while (0)
|
2013-11-14 23:45:42 +04:00
|
|
|
#define TRY_SET(x) do { if (config->x >= 0) TRY(set_##x(&data, config->x)); } while (0)
|
2013-11-14 17:09:52 +04:00
|
|
|
|
2013-11-14 22:41:28 +04:00
|
|
|
int sp_set_config(struct sp_port *port, struct sp_port_config *config)
|
2013-11-14 17:09:52 +04:00
|
|
|
{
|
|
|
|
struct sp_port_data data;
|
|
|
|
|
|
|
|
TRY(start_config(port, &data));
|
2013-11-14 23:45:42 +04:00
|
|
|
TRY_SET(baudrate);
|
|
|
|
TRY_SET(bits);
|
|
|
|
TRY_SET(parity);
|
|
|
|
TRY_SET(stopbits);
|
|
|
|
TRY_SET(rts);
|
2013-11-15 01:12:17 +04:00
|
|
|
TRY_SET(cts);
|
2013-11-14 23:45:42 +04:00
|
|
|
TRY_SET(dtr);
|
2013-11-15 01:12:17 +04:00
|
|
|
TRY_SET(dsr);
|
|
|
|
TRY_SET(xon_xoff);
|
2013-11-14 17:09:52 +04:00
|
|
|
TRY(apply_config(port, &data));
|
2013-04-28 02:35:45 +04:00
|
|
|
|
|
|
|
return SP_OK;
|
|
|
|
}
|
|
|
|
|
2013-11-15 02:01:11 +04:00
|
|
|
#define CREATE_SETTER(x) int sp_set_##x(struct sp_port *port, int x) { \
|
|
|
|
struct sp_port_data data; \
|
|
|
|
TRY(start_config(port, &data)); \
|
|
|
|
TRY(set_##x(&data, x)); \
|
|
|
|
TRY(apply_config(port, &data)); \
|
|
|
|
return SP_OK; \
|
|
|
|
}
|
|
|
|
|
|
|
|
CREATE_SETTER(baudrate)
|
|
|
|
CREATE_SETTER(bits)
|
|
|
|
CREATE_SETTER(parity)
|
|
|
|
CREATE_SETTER(stopbits)
|
|
|
|
CREATE_SETTER(rts)
|
|
|
|
CREATE_SETTER(cts)
|
|
|
|
CREATE_SETTER(dtr)
|
|
|
|
CREATE_SETTER(dsr)
|
|
|
|
CREATE_SETTER(xon_xoff)
|
|
|
|
|
2013-04-28 02:35:45 +04:00
|
|
|
int sp_last_error_code(void)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
return GetLastError();
|
|
|
|
#else
|
|
|
|
return errno;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
char *sp_last_error_message(void)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
LPVOID message;
|
|
|
|
DWORD error = GetLastError();
|
|
|
|
|
|
|
|
FormatMessage(
|
|
|
|
FORMAT_MESSAGE_ALLOCATE_BUFFER |
|
|
|
|
FORMAT_MESSAGE_FROM_SYSTEM |
|
|
|
|
FORMAT_MESSAGE_IGNORE_INSERTS,
|
|
|
|
NULL,
|
|
|
|
error,
|
|
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
|
|
|
|
(LPTSTR) &message,
|
|
|
|
0, NULL );
|
|
|
|
|
|
|
|
return message;
|
|
|
|
#else
|
|
|
|
return strerror(errno);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void sp_free_error_message(char *message)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
LocalFree(message);
|
2013-04-28 03:17:46 +04:00
|
|
|
#else
|
|
|
|
(void)message;
|
2013-04-28 02:35:45 +04:00
|
|
|
#endif
|
|
|
|
}
|