/**************************************************************************** * This file is part of the project AqHome. * AqHome (c) by 2023 Martin Preuss, all rights reserved. * * The license for this file can be found in the file COPYING which you * should have received along with this file. ****************************************************************************/ #ifdef HAVE_CONFIG_H # include #endif #include "aqhome/serial_p.h" #include #include #include #include #include #include #include #include int _attnLow(AQH_SERIAL *sr); int _attnHigh(AQH_SERIAL *sr); int _readForced(AQH_SERIAL *sr, uint8_t *buf, int len); int _writeForced(AQH_SERIAL *sr, const uint8_t *buf, uint8_t len); int _check(const uint8_t *ptr, uint8_t len); uint8_t _calcChecksum(const uint8_t *ptr, uint8_t len); AQH_SERIAL *AQH_Serial_new(const char *deviceName, uint8_t addr) { AQH_SERIAL *sr; GWEN_NEW_OBJECT(AQH_SERIAL, sr); sr->deviceName=deviceName?strdup(deviceName):NULL; sr->address=addr; sr->fd=-1; return sr; } void AQH_Serial_free(AQH_SERIAL *sr) { if (sr) { free(sr->deviceName); GWEN_FREE_OBJECT(sr); } } int AQH_Serial_Open(AQH_SERIAL *sr) { int fd; int status; int i; struct termios options; int rv; fd=open(sr->deviceName,O_RDWR | O_NOCTTY ); if (fd<0) { DBG_ERROR(NULL, "Error on open(%s): %s (%d)", sr->deviceName, strerror(errno), errno); return GWEN_ERROR_IO; } rv=tcgetattr(fd, &options); if (rv<0) { DBG_ERROR(NULL, "Error on tcgetattr(%s): %s (%d)", sr->deviceName, strerror(errno), errno); return GWEN_ERROR_IO; } rv=cfsetispeed(&options, B19200); //rv=cfsetispeed(&options, B9600); if (rv<0) { DBG_ERROR(NULL, "Error on cfsetispeed(%s): %s (%d)", sr->deviceName, strerror(errno), errno); return GWEN_ERROR_IO; } rv=cfsetospeed(&options, B19200); if (rv<0) { DBG_ERROR(NULL, "Error on cfsetospeed(%s): %s (%d)", sr->deviceName, strerror(errno), errno); return GWEN_ERROR_IO; } options.c_cflag &= ~PARENB; options.c_cflag &= ~CSTOPB; /* use one stopbit insteadof 2 */ options.c_cflag &= ~CSIZE; options.c_cflag |= CS8; options.c_cflag &= ~CRTSCTS; /* disable HW flow control */ options.c_iflag &= ~(IXON | IXOFF | IXANY); /* disable SW flow control */ options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); /* raw input */ rv=tcsetattr(fd, TCSANOW, &options); if (rv<0) { DBG_ERROR(NULL, "Error on tcsetattr(%s): %s (%d)", sr->deviceName, strerror(errno), errno); return GWEN_ERROR_IO; } sr->fd=fd; return 0; } void AQH_Serial_Close(AQH_SERIAL *sr) { if (sr->fd>=0) { close (sr->fd); sr->fd=-1; } } int AQH_Serial_Recv(AQH_SERIAL *sr, uint8_t *buf, int len) { int rv; uint8_t *bufSaved; int bytesReceived=0; int msgLen; bufSaved=buf; /* destination, msg length */ rv=_readForced(sr, buf, 2); if (rv<0) { DBG_INFO(NULL, "here (%d)", rv); return rv; } msgLen=buf[1]; buf+=2; /* two bytes already read */ /* read message and XOR byte */ rv=_readForced(sr, buf, msgLen+1); /* add one byte for XOR checksum */ if (rv<0) { DBG_INFO(NULL, "here (%d)", rv); return rv; } buf+=msgLen; bytesReceived=msgLen+3; rv=_check(bufSaved, bytesReceived); if (rv<0) { DBG_INFO(NULL, "here (%d)", rv); return rv; } return bytesReceived; } int AQH_Serial_Send(AQH_SERIAL *sr, const uint8_t *ptr, uint8_t len) { int rv; rv=_check(ptr, len); if (rv<0) { DBG_INFO(NULL, "here (%d)", rv); return rv; } rv=_attnLow(sr); if (rv<0) { DBG_INFO(NULL, "here (%d)", rv); return rv; } usleep(50); rv=_writeForced(sr, ptr, len); if (rv<0) { DBG_INFO(NULL, "here (%d)", rv); _attnHigh(sr); return rv; } _attnHigh(sr); return 0; } int AQH_Serial_SendPacket(AQH_SERIAL *sr, uint8_t destAddr, const uint8_t *ptr, uint8_t len) { int rv; uint8_t x=0; rv=_attnLow(sr); if (rv<0) { DBG_INFO(NULL, "here (%d)", rv); return rv; } usleep(10); /* send dest address */ rv=_writeForced(sr, &destAddr, 1); if (rv<0) { DBG_INFO(NULL, "here (%d)", rv); _attnHigh(sr); return rv; } x^=destAddr; /* send msg len */ rv=_writeForced(sr, &len, 1); if (rv<0) { DBG_INFO(NULL, "here (%d)", rv); _attnHigh(sr); return rv; } x^=len; if (len>0) { uint8_t i; /* send message */ rv=_writeForced(sr, ptr, len); if (rv<0) { DBG_INFO(NULL, "here (%d)", rv); _attnHigh(sr); return rv; } for (i=0; ifd, TIOCMGET, &status); /* GET the State of MODEM bits in Status */ if (rv<0) { DBG_ERROR(NULL, "Error on ioctl(%s): %s (%d)", sr->deviceName, strerror(errno), errno); return GWEN_ERROR_IO; } status |= TIOCM_DTR; /* clear the DTR pin (cave: signals inverted!) */ rv=ioctl(sr->fd, TIOCMSET, &status); if (rv<0) { DBG_ERROR(NULL, "Error on ioctl(%s): %s (%d)", sr->deviceName, strerror(errno), errno); return GWEN_ERROR_IO; } return 0; } int _attnHigh(AQH_SERIAL *sr) { int status; int rv; rv=ioctl(sr->fd, TIOCMGET, &status); if (rv<0) { DBG_ERROR(NULL, "Error on ioctl(%s): %s (%d)", sr->deviceName, strerror(errno), errno); return GWEN_ERROR_IO; } status |= TIOCM_DTR; /* Set the DTR pin */ status &= ~ TIOCM_DTR; /* clear the DTR pin (cave: signals inverted!) */ rv=ioctl(sr->fd, TIOCMSET, &status); if (rv<0) { DBG_ERROR(NULL, "Error on ioctl(%s): %s (%d)", sr->deviceName, strerror(errno), errno); return GWEN_ERROR_IO; } return 0; } int _readForced(AQH_SERIAL *sr, uint8_t *buf, int len) { while(len>0) { int rv; rv=(int) read(sr->fd, buf, len); if (rv==0) { DBG_ERROR(NULL, "EOF met on read(%s)", sr->deviceName); return GWEN_ERROR_IO; } else if (rv<0) { if (errno!=EINTR) { DBG_ERROR(NULL, "Error on read(%s): %s (%d)", sr->deviceName, strerror(errno), errno); return GWEN_ERROR_IO; } } else { len-=rv; buf+=rv; } } /* while */ return 0; } int _writeForced(AQH_SERIAL *sr, const uint8_t *buf, uint8_t len) { while(len>0) { int rv; rv=(int) write(sr->fd, buf, len); if (rv<0) { if (errno!=EINTR) { DBG_ERROR(NULL, "Error on write(%s): %s (%d)", sr->deviceName, strerror(errno), errno); return GWEN_ERROR_IO; } } else { len-=rv; buf+=rv; } } /* while */ return 0; } int _check(const uint8_t *ptr, uint8_t len) { int i; uint8_t x=0; for (i=0; i