b15f/control/src/drv/usart.cpp

169 lines
4.1 KiB
C++
Raw Normal View History

2019-03-29 11:12:31 +01:00
#include "usart.h"
2019-03-29 11:38:11 +01:00
void USART::openDevice(std::string device)
2019-03-29 11:12:31 +01:00
{
2019-05-23 15:08:54 +02:00
file_desc = open(device.c_str(), O_RDWR | O_NOCTTY | O_NDELAY /* | O_NONBLOCK*/);
if(file_desc <= 0)
throw USARTException("Fehler beim Öffnen des Gerätes");
struct termios options;
int code = tcgetattr(file_desc, &options);
if(code)
throw USARTException("Fehler beim Lesen der Geräteparameter");
options.c_cflag = CS8 | CLOCAL | CREAD;
options.c_iflag = IGNPAR;
options.c_oflag = 0;
options.c_lflag = 0;
options.c_cc[VMIN] = 0; // #bytes read returns at least
options.c_cc[VTIME] = timeout;
2019-03-29 11:12:31 +01:00
code = cfsetspeed(&options, baudrate);
2019-05-23 15:08:54 +02:00
if(code)
throw USARTException("Fehler beim Setzen der Baudrate");
code = tcsetattr(file_desc, TCSANOW, &options);
if(code)
throw USARTException("Fehler beim Setzen der Geräteparameter");
clearOutputBuffer();
clearInputBuffer();
2019-03-29 11:12:31 +01:00
}
2019-05-23 15:08:54 +02:00
2019-03-29 11:12:31 +01:00
void USART::closeDevice()
{
2019-05-23 15:08:54 +02:00
int code = close(file_desc);
if(code)
throw USARTException("Fehler beim Schließen des Gerätes");
2019-03-29 11:12:31 +01:00
}
2019-05-23 15:08:54 +02:00
2019-04-02 08:46:42 +02:00
void USART::clearInputBuffer()
2019-03-29 11:12:31 +01:00
{
2019-05-23 15:08:54 +02:00
int code = tcflush(file_desc, TCIFLUSH);
if(code)
throw USARTException("Fehler beim Leeren des Eingangspuffers");
2019-03-29 11:12:31 +01:00
}
2019-05-23 15:08:54 +02:00
2019-04-02 08:46:42 +02:00
void USART::clearOutputBuffer()
2019-03-29 11:12:31 +01:00
{
2019-05-23 15:08:54 +02:00
int code = tcflush(file_desc, TCOFLUSH);
if(code)
throw USARTException("Fehler beim Leeren des Ausgangspuffers");
2019-03-29 11:12:31 +01:00
}
2019-05-23 15:08:54 +02:00
2019-04-05 15:59:05 +02:00
void USART::flushOutputBuffer()
{
2019-05-23 15:08:54 +02:00
int code = tcdrain(file_desc);
if(code)
throw USARTException("Fehler beim Versenden des Ausgangspuffers");
2019-04-05 15:59:05 +02:00
}
2019-03-29 11:12:31 +01:00
2019-03-29 11:38:11 +01:00
void USART::writeByte(uint8_t b)
{
2019-05-23 15:08:54 +02:00
int sent = write(file_desc, &b, 1);
if(sent != 1)
{
std::cout << "WARNUNG: Fehler beim Senden (" << sent << "): writeByte(), wiederhole..." << std::endl;
usleep(100000);
sent = write(file_desc, &b, 1);
if(sent != 1)
throw USARTException("Fehler beim Senden: writeByte()");
}
2019-03-29 11:38:11 +01:00
}
2019-05-23 15:08:54 +02:00
2019-03-29 11:38:11 +01:00
void USART::writeInt(uint16_t d)
{
2019-05-23 15:08:54 +02:00
int sent = write(file_desc, reinterpret_cast<char*>(&d), 2);
if(sent != 2)
throw USARTException("Fehler beim Senden: writeInt()");
2019-03-29 11:38:11 +01:00
}
2019-03-29 13:35:06 +01:00
2019-05-28 12:32:31 +02:00
void USART::writeU32(uint32_t w)
{
int sent = write(file_desc, reinterpret_cast<char*>(&w), 4);
if(sent != 4)
throw USARTException("Fehler beim Senden: writeU32()");
}
2019-04-01 08:47:55 +02:00
2019-05-29 10:46:38 +02:00
int USART::transmit(uint8_t *buffer, uint16_t offset, uint8_t len)
2019-04-01 08:47:55 +02:00
{
2019-05-23 15:08:54 +02:00
uint32_t elapsed = 0;
int n_read = -1;
auto start = std::chrono::steady_clock::now();
auto end = start;
while(elapsed < timeout)
{
n_read = read(file_desc, buffer + offset, len);
if (n_read == len)
return n_read;
end = std::chrono::steady_clock::now();
elapsed = std::chrono::duration_cast<std::chrono::microseconds>(end - start).count();
}
return 0;
2019-04-01 08:47:55 +02:00
}
2019-05-29 10:46:38 +02:00
int USART::receive(uint8_t *buffer, uint16_t offset, uint8_t len)
2019-04-01 14:30:21 +02:00
{
2019-05-23 15:08:54 +02:00
uint32_t elapsed = 0;
int n_sent = -1;
auto start = std::chrono::steady_clock::now();
auto end = start;
while(elapsed < timeout)
{
n_sent = write(file_desc, buffer + offset, len);
flushOutputBuffer();
if (n_sent == len)
return n_sent;
end = std::chrono::steady_clock::now();
elapsed = std::chrono::duration_cast<std::chrono::microseconds>(end - start).count();
}
return n_sent;
2019-04-01 14:30:21 +02:00
}
2019-03-29 11:38:11 +01:00
uint8_t USART::readByte(void)
{
2019-05-23 15:08:54 +02:00
char b;
auto start = std::chrono::steady_clock::now();
auto end = start;
uint16_t elapsed = 0;
while(elapsed < timeout * 100)
{
int code = read(file_desc, &b, 1);
if (code > 0)
return static_cast<uint8_t>(b);
end = std::chrono::steady_clock::now();
elapsed = std::chrono::duration_cast<std::chrono::milliseconds>(end - start).count();
}
throw TimeoutException("Verbindung unterbrochen.", timeout);
2019-03-29 11:38:11 +01:00
}
uint16_t USART::readInt(void)
{
2019-05-23 15:08:54 +02:00
return readByte() | readByte() << 8;
2019-03-29 11:38:11 +01:00
}
2019-03-29 11:12:31 +01:00
uint32_t USART::getBaudrate()
{
2019-05-23 15:08:54 +02:00
return baudrate;
2019-03-29 11:12:31 +01:00
}
uint8_t USART::getTimeout()
{
2019-05-23 15:08:54 +02:00
return timeout;
2019-03-29 11:12:31 +01:00
}
2019-05-23 15:08:54 +02:00
2019-03-29 11:12:31 +01:00
void USART::setBaudrate(uint32_t baudrate)
{
2019-05-23 15:08:54 +02:00
this->baudrate = baudrate;
2019-03-29 11:12:31 +01:00
}
void USART::setTimeout(uint8_t timeout)
{
2019-05-23 15:08:54 +02:00
this->timeout = timeout;
2019-03-29 11:12:31 +01:00
}